URL Parser
Break any URL into its parts — protocol, host, port, path, query and fragment — and see every query parameter decoded. Runs entirely in your browser.
| Key | Value (decoded) |
|---|
How it works
This uses the browser's built-in URL API to split the address into its standard parts, and URLSearchParams to list each query parameter with its value automatically percent-decoded (so hello+world becomes hello world). Parsing happens entirely on your device.