url encode decode percent encoding query param
URL Encode / Decode
Convert non-ASCII characters and special chars in URLs to %XX format, or decode them back. Useful when building API parameters or redirect URLs.
USAGE
3 simple steps
- 1Paste the URL or string you want to encode/decode
- 2Select Encode or Decode direction
- 3Click Convert to see the result
FAQ
Frequently Asked Questions
A. This tool is intended for encoding individual URL parts such as query parameter values. Cut out only the part you want to encode before pasting.
A. encodeURI encodes a full URL; encodeURIComponent encodes individual parts like query parameters. This tool performs encodeURIComponent-equivalent conversion.