How to use

  • Encode — Convert text to URL-encoded format (%XX)
  • Decode — Convert a percent-encoded string back to plain text

FAQ

Q. What is URL encoding?
URL encoding (percent-encoding) converts characters that cannot appear in a URL — such as spaces, special symbols, or non-ASCII text — into a "%" followed by two hexadecimal digits (e.g. space becomes %20).
Q. Does it support Unicode and international characters?
Yes. Any character, including emoji and non-Latin scripts, is converted to %XX percent-encoded form. Useful for query parameters and form data.
Q. Can I decode as well as encode?
Yes. Click "Decode" to convert a percent-encoded string (e.g. %E3%81%82) back to the original text.

Other Tools