url-parser
URL Parser & Decoder
Break down any URL into its components. Extract and decode query parameters, analyze the structure, and understand URL anatomy.
Try an example:
Enter a URL to parse
Break down any URL into its components: protocol, host, path, query parameters, and more.
URL Components:
- Protocol - http:// or https://
- Hostname - Domain name (e.g., example.com)
- Port - Optional port number (default: 80/443)
- Path - Resource path (e.g., /page/subpage)
- Query - Parameters after ? (e.g., ?key=value)
- Fragment - Anchor after # (e.g., #section)
URL Structure
https://user:pass@example.com:8080/path/page?key=value#section
Protocol
http:// or https://
Auth (optional)
username:password@
Hostname
Domain or IP
Port (optional)
:80, :443, :8080
Path
Resource location
Query String
?key=value&...
Fragment
#anchor
Frequently Asked Questions
A URL (Uniform Resource Locator) is the address of a resource on the internet. It consists of several parts: the protocol (http/https), hostname (domain), optional port, path, query parameters, and fragment. This tool breaks down any URL into these components for easy inspection.