Percent-encode and decode URLs in your browser
Convert plain text to percent-encoded strings for query parameters, path segments, and API URLs. Toggle Component mode (encodeURIComponent) or URI mode (encodeURI) depending on whether you are encoding a single value or a full URL.
Everything runs locally in your browser. Your strings are never uploaded — ideal for debugging fetch URLs, form submissions, and redirect links with Unicode or special characters.
- Encode text to percent-encoding
- Decode %XX sequences to plain text
- encodeURIComponent (component) mode
- encodeURI (full URI) mode
- UTF-8 & Unicode support
- 100% client-side & free