E-commerce search URL
https://shop.example.com/search?q=running+shoes&size=42&color=blue&sort=price#results
hostname: shop.example.com · path: /search · 4 query params · fragment: #results
Parse any URL into its components: protocol, host, path, query params and hash.
Was this tool useful?
A URL encodes a lot of information in a compact string: the protocol, the host and optional port, the path, query parameters, and an optional fragment. Parsing it out manually is error-prone; this tool does it reliably using the browser's built-in URL API.
Query parameters are decoded from percent-encoding automatically, so %20 becomes a space and %2F becomes a slash in the display.
https://shop.example.com/search?q=running+shoes&size=42&color=blue&sort=price#results
hostname: shop.example.com · path: /search · 4 query params · fragment: #results