URL Encode / Decode

Percent-encoding conversion for Chinese parameters and special characters

How to use

Uses the encodeURIComponent rule: it also escapes reserved characters such as / ? & = #, which is ideal for encoding query parameter values.

FAQ

What is the difference between encodeURI and encodeURIComponent?

The former keeps URL structural characters like / ? & = and suits a full URL; the latter escapes everything and suits parameter values. This tool uses the latter.