URL Parser / Builder

Decompose URLs into components or build URLs from parts

100% In-BrowserNo Server UploadFree, No Signup
Network
For EngineersFastPass - AI Career Agent

AI analyzes your skills and matches you with the best opportunities. Get a free market value assessment.

Get Started Free

How to Use

  1. Enter a URL

    Enter the full URL you want to parse. Include the protocol (https://, etc.).

  2. Click Convert

    Press "Convert" to decompose the URL into protocol, host, port, path, query params, and hash.

  3. 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#section
Output
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: #section

Parse a simple URL

Input
https://www.google.com/search?q=test
Output
Protocol: https:
Hostname: www.google.com
Pathname: /search
Search: ?q=test
  q = test

Features

  • 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.