Encode & decode URLs or URI components with live syntax highlighting and automatic query string breakdown. 100% browser-based, no data sent to server.
Type or paste text on the left to see live output here.
| # | Parameter Key | Decoded Value | Raw Encoded Value |
|---|
URL encoding converts characters into a format that can be safely transmitted over the Internet within URLs.
Unsafe ASCII characters (such as spaces, quotes, or ampersands) and non-ASCII Unicode characters are replaced with a
% followed by two hexadecimal digits representing their UTF-8 byte value. Using
encodeURIComponent is recommended for query string parameters, while encodeURI preserves
full URL structures. This tool performs live conversion 100% locally in your browser.