URLパーサー&デコーダー

Parse any URL into its components · protocol, host, port, path, query parameters, and fragment.

Ad Space
Ad Space

URL Anatomy

A URL consists of: protocol://username:password@host:port/path?query#fragment. The query string contains key-value pairs separated by &. Values are percent-encoded for special characters.

What is percent encoding?

Percent encoding (URL encoding) replaces unsafe characters with a % followed by their hex code. For example, a space becomes %20.

Related Tools