URL Parser
Break a URL into protocol, host, path, and query parts.
Components
- Protocol
- https:
- Username
- user
- Password
- pass
- Hostname
- example.com
- Port
- 8080
- Path
- /path/to/page
- Query
- ?q=test&lang=en
- Fragment
- #section
- Origin
- https://example.com:8080
Query Parameters (2)
qtest
langen
Anatomy of a URL
A URL is made of several parts: the scheme/protocol (https:), optional credentials, host and port, path, query string, and fragment. This parser uses the browser's native URL API to split any absolute URL into those components and decode each query parameter. Useful for debugging redirects, links, and API endpoints — all locally in your browser.
Related Developer Utilities tools
RegExp Tester
Test regular expressions and inspect matches locally.
Subnet Calculator
Compute CIDR subnets, usable hosts, and network ranges.
Cron Parser
Translate cron syntax into plain English.
HTML Previewer
Paste HTML and see it rendered live in a safe, sandboxed preview.
HTTP Status Code Reference
Search and look up every HTTP status code and its meaning.
MIME Type Lookup
Find the MIME type for a file extension, or the extensions for a MIME type.
ASCII Table
Full ASCII table with decimal, hex, octal, and binary values for every character.
Chmod Calculator
Build Unix file permissions with checkboxes and read them as octal (755) and symbolic (rwxr-xr-x) notation.