URL Parser
Parse any URL into scheme, host, port, path, query parameters, and fragment. Decodes percent-encoded query values instantly in your browser.
FAQ
Is anything sent to a server?
No. Parsing happens entirely in your browser using the standard URL API. The URL you paste never leaves the page.
Why does the hostname show xn-- characters?
Hostnames with non-ASCII characters (internationalized domain names) are normalized to punycode, which is how they appear in DNS. Attackers abuse lookalike unicode domains for phishing; the punycode form reveals them. Use the Punycode / IDN Converter tool to convert back and forth.
Are query parameter values decoded?
Yes. The parameter table shows each value percent-decoded, which is useful when inspecting redirect chains, tracking parameters, or encoded payloads in suspicious links.