<!-- Markdown version of https://ocxly.com/url-parser.html · auto-generated, may lag the live page -->

# 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) |
| --- | --- |
| q | hello world |
| lang | en |

### 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.

---
*Source: [ocxly.com/url-parser.html](https://ocxly.com/url-parser.html) — OCXLY, free 100% client-side privacy-first tools. Free URL parser. Break any URL into protocol, host, port, path, query and fragment, and see every query parameter decoded. Runs entirely in your browser.*
