Developer Tools

Utilities lainnya

URL Parser / Query String Splitter

Split a URL into components and query pairs.

URL or query string

Guide & explanation

The URL Parser breaks a URL into its parts using the browser's built-in URL parser, and shows the query parameters as a table.

Anatomy of a URL

https://user:pass@host.example:8443/path/page?q=1&sort=asc#section
\___/   \_______/ \_____________/ \________/ \__________/ \_____/
scheme  credentials    host:port       path       query      hash

Output

  • Protocol, origin, username/password, host, hostname, port, path, query, fragment.
  • A query-parameter table with decoded values.

You can also paste a bare query string, e.g. a=1&b=2, without a full URL.