URL Encoder/Decoder

Encode and decode URLs for safe web transmission

About URL Encoding

URL encoding is a mechanism for converting characters into a format that can be safely transmitted over the Internet. URLs can only be sent over the Internet using the ASCII character set. URL encoding replaces unsafe ASCII characters with a "%" followed by two hexadecimal digits.

For example, spaces are encoded as "%20", and special characters like "@" become "%40". This ensures that URLs are properly interpreted by web browsers and servers.