URL Parser / Builder
Decompose URLs into components or build URLs from parts
100% In-BrowserNo Server UploadFree, No Signup
NetworkHow to Use
- Enter a URL
Enter the full URL you want to parse. Include the protocol (https://, etc.).
- Click Convert
Press "Convert" to decompose the URL into protocol, host, port, path, query params, and hash.
- Copy result
Use the "Copy" button to copy the results to your clipboard.
URL Parser / Builder Examples
Parse a full URL
Input
https://user:pass@example.com:8080/path/to/page?q=hello&lang=ja#sectionOutput
Protocol: https:
Username: user
Password: pass
Hostname: example.com
Port: 8080
Pathname: /path/to/page
Search: ?q=hello&lang=ja
q = hello
lang = ja
Hash: #sectionParse a simple URL
Input
https://www.google.com/search?q=testOutput
Protocol: https:
Hostname: www.google.com
Pathname: /search
Search: ?q=test
q = testFeatures
- Accurate parsing via browser URL API
- Display protocol, username, password, hostname, and port
- Individual key/value display for query parameters
- Build mode to construct URLs from components
- Real-time parsing (auto-updates on input)
- Local processing (your input is not sent to servers)
- Dark mode support
FAQ
Which URL components are shown?
Protocol (scheme), username, password, hostname, port, pathname, query string (each parameter key and value), and fragment (hash).
What is build mode?
Build mode lets you enter individual components (protocol, hostname, path, etc.) and constructs a complete URL. Select "Build" from the toolbar.
Is my data sent to a server?
No. All parsing happens locally in your browser via JavaScript. No data is ever transmitted externally.