🔗

URL Parser & Analyzer

Break any URL into its components — protocol, host, path, query parameters and fragment. Encode, decode and inspect every part instantly.

🌐 Network & Web Tools Free Browser-based
Tool

URL Structure

A URL (Uniform Resource Locator) has a well-defined structure: scheme://[user:pass@]host[:port]/path[?query][#fragment]. Understanding each component is essential for web development, API debugging and SEO.

URL Components

ComponentExampleDescription
Protocolhttps:Communication scheme (http, https, ftp…)
Username / Passworduser:pass@HTTP Basic Auth credentials (rare in modern URLs)
Hostnameexample.comDomain or IP address of the server
Port:8080TCP port — omitted when using default (80/443)
Path/blog/postResource location on the server
Query string?id=1&sort=ascKey-value pairs sent to the server
Fragment#sectionIn-page anchor — processed by browser, not server

URL Encoding

Special characters in URLs must be percent-encoded: spaces become %20, & becomes %26. This tool decodes percent-encoded values in query parameters automatically so you can read them clearly.

Frequently Asked Questions