URL Parser
Parse URLs into their individual components
URL Input
This tool breaks a URL down into its individual components - protocol, domain, path, query parameters, and fragment - and displays each part separately. It's useful for understanding a complex URL at a glance, debugging query string parameters, or checking exactly what a link points to before clicking it.
Frequently asked questions
Typically the protocol (http/https), hostname, port (if specified), path, each individual query parameter, and the fragment/hash portion after a #.
This tool focuses on parsing/breaking down an existing URL. If you need to construct query parameters, you can edit the parsed values and reassemble them manually based on what the tool shows you.
Yes - percent-encoded characters (like %20 for a space) in query parameters are typically decoded so you can read the actual intended values.