Tool
Encode and decode URL strings. Also parses full URLs into their individual components.
URLs can only contain a limited set of ASCII characters. If you need to put spaces, special characters, or non-Latin text in a URL, they have to be "percent-encoded" — each byte gets converted to %XX format. A space becomes %20, an ampersand becomes %26, and so on. Decoding reverses the process back to the original characters.