URL parser
Breaks a URL into its parts using the browser's own standards-based URL parser. Never navigates to or fetches the URL.
1 · Input
Parsed entirely in your browser - this URL is never navigated to, fetched, or sent anywhere.
What this does
Parses a URL with the browser's built-in URL API and displays every component - scheme, host, hostname, port, path, query string (with each parameter broken out individually), fragment, and origin - plus a punycode note when the hostname contains an internationalized-domain label.
Never contacted
The URL you enter is only ever parsed as text - this tool never navigates to it, fetches it, or sends it anywhere. Embedded credentials (a username or password inside the URL itself) are flagged with a warning, since that is a legacy, discouraged pattern that can leak into logs and Referer headers.
Privacy
Parsed entirely in your browser.