URL Parser
Break a URL into its parts.
Runs entirely in your browser — nothing you enter is uploaded, logged, or tracked.
Paste a URL to break it down into scheme, host, port, path, each query parameter (decoded) and the fragment — a clear table of everything packed into a link. Repeated query keys are listed individually so you can read exactly what is being passed.
Components
Query parameters
Frequently asked questions
Does it decode percent-encoded values?
Yes. Each query parameter value is URL-decoded so you can read it plainly, while the raw URL is left untouched.
Does it handle duplicate query keys?
Yes — repeated keys (like ?id=1&id=2) are all listed, in order, rather than collapsed.
Is the URL sent anywhere?
No. Parsing uses the browser’s built-in URL engine, entirely on your device.