URL Parser
URL parts
Protocol
https:
Username
user
Password
pass
Hostname
www.example.com
Port
8080
Pathname
/path/to/page
Search (raw)
?utm_source=google&id=42&q=hello
Hash
#section
Origin
https://www.example.com:8080
Query parameters (3)
| Key | Value |
|---|---|
| utm_source | |
| id | 42 |
| q | hello |
Paste any URL to break it into its parts: protocol, host, port, path, query string, and fragment. Query parameters are split into a key and value table. Everything runs in your browser using the built-in URL API.