Free coupon for initial registration

URL encode the string

Contents [hide]

Output

toyota%20%E8%BB%8A


Code examples


JavaScript

1
2
orig = "toyota 車"
console.log(encodeURI(orig))

PHP

1
2
3
<?php
$orig = "toyota 車";
print(rawurlencode($orig))."\n";

Perl

1
2
3
use URI::Escape;
my $orig = "toyota 車";
print uri_escape($orig)."\n";

Python

1
2
3
import urllib.parse
orig = "toyota 車"
print(urllib.parse.quote(orig))

Ruby

1
2
3
require 'uri'
orig = "toyota 車"
print URI.escape(orig) + "\n"
Free coupon for initial registration