URL Encoder & Decoder
Encode URLs for API requests, decode query strings from logs, and convert percent-encoded text locally in your browser.
0 characters
0 characters
API request debugging
Encode nested redirect URLs, callback values, search terms and other query parameter values before sending requests.
Readable query strings
Decode copied URLs from logs, analytics reports and browser address bars into readable text.
Private local processing
The tool uses browser-native encoding functions. No upload endpoint or server-side conversion is involved.
Frequently Asked Questions
Is my URL uploaded when I encode or decode it?
No. URL encoding and decoding run with JavaScript in your browser. The text you paste is not sent to Convertr servers.
Should I encode a full URL or a URL component?
Use component mode for query parameter values, path segments and fragments. Use full URL mode when you want to keep URL separators such as : / ? & and = readable.
What does form mode do?
Form mode follows application/x-www-form-urlencoded behavior for query strings, where spaces are represented with plus signs during encoding and plus signs become spaces during decoding.