Free coupon for initial registration

URL decode the string

Contents [hide]

Output

toyota 車


Code examples


JavaScript

1
2
orig = "toyota%20%E8%BB%8A"
console.log(decodeURI(orig))

PHP

1
2
3
<?php
$orig = "toyota%20%E8%BB%8A";
print(rawurldecode($orig))."\n";

Perl

1
2
3
use URI::Escape;
my $orig = "toyota%20%E8%BB%8A";
print uri_unescape($orig)."\n";

Python

1
2
3
import urllib.parse
orig = "toyota%20%E8%BB%8A"
print(urllib.parse.unquote(orig))

Ruby

1
2
3
require 'uri'
orig = "toyota%20%E8%BB%8A"
print URI.unescape(orig) + "\n"
Free coupon for initial registration