TOOL

URL Parser

Paste a URL to see its scheme, host, port, path, each query parameter and fragment.

Processing happens locally in your browser. Nothing you type is sent to BlackhawkHub.

How to use it

Paste a URL to see it split into scheme, host, port, path, each query parameter (decoded), and fragment. It uses the browser's own URL parser, so it matches how browsers actually interpret the address.

Why it helps

Breaking a URL apart quickly reveals a wrong scheme or port, a missing or mistyped host that will fail DNS, or an unencoded character in the query that can cause a 400 Bad Request. To encode or decode a value for use in a URL, use the URL Encoder / Decoder.

Frequently asked questions

What are the parts of a URL?

Scheme (https), optional userinfo, host (example.com), optional port (8443), path (/path/page), query string (?q=…), and fragment (#section). This tool separates all of them and decodes the query parameters.

Why does my URL not work?

Common problems are unencoded special characters in the query, a wrong scheme or port, or a typo in the host. Parsing the URL shows each part so you can spot the issue; a malformed URL often returns a 400.

Sources