URL Parser
Parse a URL into its components: protocol, host, port, path, query, hash.
URL Parser
| Part | Value |
|---|---|
| Protocol | https: |
| Username | user |
| Password | pass |
| Hostname | example.com |
| Port | 8080 |
| Pathname | /path/to/page |
| Search | ?q=1&lang=en |
| Hash | #section |
| Origin | https://example.com:8080 |
| Full URL | https://user:pass@example.com:8080/path/to/page?q=1&lang=en#section |
Query Parameters
| Key | Value |
|---|---|
| q | 1 |
| lang | en |
Related Tools
About this tool
Parse a URL into its components: protocol, host, port, path, query, hash.