Paste a percent-encoded URL or query string and get the readable version back. Runs in your browser — nothing is sent anywhere.
URL TOOLS
Decodes percent-encoded characters back to their original form (decodeURIComponent).
URL encoding uses the browser's built-in encodeURIComponent and decodeURIComponent functions. Query string parsing uses the native URLSearchParams API. Everything runs locally using browser-native APIs.
All encoding, decoding, and parsing happens inside your browser tab. The URLs and query strings you enter are never sent to a server.
It converts percent-encoded sequences (like %20 or %2F) back into their original characters.
Yes — paste the entire URL and it will decode all encoded components.
In query strings, + is sometimes used instead of %20 for spaces. The tool handles both conventions.