URL Encoder/Decoder
Encode and decode URLs for safe transmission and usage
Input URL
0 characters
Output URL
0 characters
About URL Encoding
URL encoding converts characters into a format that can be transmitted over the Internet. It replaces unsafe ASCII characters with a "%" followed by two hexadecimal digits.
- Spaces are encoded as
%20
or+
- Special characters like &, ?, =, # are encoded
- Non-ASCII characters are encoded using UTF-8
- Reserved characters have special meaning in URLs
Use encoding when including user input in URLs and decoding when reading encoded URLs.