URL Encode/Decode

Encode and decode strings for URL-safe usage.

0 characters
0 characters

About URL Encoding

URL encoding, also known as percent-encoding, is a mechanism for encoding information in a Uniform Resource Identifier (URI). It ensures that all characters in a URL are valid and can be transmitted and interpreted correctly. This is necessary because URLs can only contain a specific set of characters (ASCII). Any other character, especially reserved ones like `?`, `&`, `=`, and spaces, must be converted into a `%` followed by two hexadecimal digits.