All tools/Web Inspector

URL Parser & Builder

Runs locally

Break down complex URLs into their components and safely edit query parameters without breaking encoding.

Full URL
Base Components
Query Parameters
=
=
=

Break a URL into its parts — protocol, host, path, query parameters, and fragment — or build one from components, in your browser. Decode and edit query strings cleanly without manual escaping. Nothing is uploaded.

How to parse a URL

  1. 1Paste a URL to split it into protocol, host, path, query, and fragment.
  2. 2Edit individual query parameters in a clean table.
  3. 3Copy the rebuilt URL with everything properly encoded.

Decode and edit query strings

Long query strings packed with encoded parameters are hard to read and easy to break when edited by hand. Parsing a URL into a structured view lets you see and change each parameter individually, and rebuilding it handles the percent-encoding for you, so the result is always valid.

Frequently asked questions

How do I parse a URL into its parts?
Paste the URL into the tool and it breaks out the protocol, host, path, query parameters, and fragment for easy inspection.
Can I edit query parameters and rebuild the URL?
Yes. Edit parameters in the table and the tool rebuilds a correctly encoded URL you can copy.
Is my URL uploaded?
No. Parsing and building happen entirely in your browser.