URL Parser & Builder
Break down any URL into its components — scheme, host, path, query parameters, and fragment — with decoded values and a visual structure. Or use the builder to construct a clean URL from parts.
How to Use
Why Use This Tool
Long URLs with many query parameters are hard to read and even harder to debug. This tool gives you an instant, structured breakdown and a clean builder so you can work with URLs precisely.
Instant Breakdown
Every component of any URL parsed and displayed in a structured table with one click.
Decoded Parameters
Query param values decoded from percent-encoding so you see hello world instead of hello%20world.
URL Builder
Assemble a valid URL from parts with automatic encoding — no more manually writing %20.
Visual Structure
Color-coded URL visual shows exactly which characters belong to which component.
Frequently Asked Questions
%XX format where XX is the hexadecimal value of the character. For example, a space becomes %20 and & becomes %26. This makes it safe to include special characters in URLs. This tool decodes those values automatically so you see the original text.?, like /api/v1/users. It identifies the resource. The query string comes after the ? and contains key-value pairs like page=2&sort=asc that refine or filter the resource.#. It identifies a specific location within a page, like an anchor or a section ID. Importantly, the fragment is never sent to the server — it is handled entirely by the browser and is only visible in the address bar.:8080 or :3000, it usually means a development server or a custom deployment.