Paste a URL or query string and see every parameter neatly decoded in a table. Handy for debugging API calls and analytics URLs.
URL TOOLS
Parses a URL query string into individual key/value pairs. Paste the full URL or just the query portion.
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.
A full URL (https://...) or just the query string portion (?key=value&...).
Yes — all percent-encoded values and + signs are decoded automatically.
No practical limit — the tool handles URLs with hundreds of parameters.