URL Encoder / Decoder
Encode or decode URLs and parse query parameters into a clean key/value table.
100% client-side — your data never leaves this device.
URL / query parser
- Protocol
- https:
- Host
- example.com
- Path
- /search
- Query
- ?q=hello%20world&page=1&sort=new
- Hash
- (none)
- Origin
- https://example.com
Query parameters
| Key | Value |
|---|---|
| q | hello world |
| page | 1 |
| sort | new |
URL utilities
Encode full URIs or single components, decode percent-encoding, and break a URL into host, path, and query key/value pairs — all in your browser.