Skip to content
My Tiny Utils

Search tools

Type to find a tool, then press Enter to open it.

URL Parser

Split any URL into protocol, host, port, path, query parameters, and fragment. Spot encoding issues instantly.

Processed locally in your browser — nothing is uploaded.

0 characters

About URL Parser

See every component of a URL at a glance: protocol, username, host, port, path segments, decoded query parameters, and fragment. Useful when a URL is long, heavily encoded, or behaving unexpectedly.

Common uses

  • Debug redirect chains and callback URLs
  • Verify which host and port a request actually targets
  • Decode percent-encoded paths and parameters

Example

Input

https://user@api.example.com:8443/v1/search?q=caf%C3%A9#results

Output

protocol: https · host: api.example.com · port: 8443 · path: /v1/search · q: café · fragment: results