URL Encoder/Decoder
Encode and decode URLs and URI components quickly and easily. Perfect for developers and webmasters.
Encode
Decode
Text to Encode
0 characters
Encoding Options
Encoded URL
0 characters
0% larger
URL to Decode
0 characters
Decoding Options
Decoded URL
0 characters
0% smaller
About URL Encoding
What is URL Encoding?
URL encoding converts characters into a format that can be transmitted over the Internet. URLs can only be sent over the Internet using the ASCII character set. Since URLs often contain characters outside the ASCII set, they must be converted to a valid ASCII format.
Common Uses
- Encoding special characters in query parameters
- Handling form data submission
- Creating SEO-friendly URLs
- Encoding data for API requests
- Handling internationalized domain names
Common Encoded Characters
Character | Encoded Value | Description |
---|---|---|
Space | %20 or + | Space character |
! | %21 | Exclamation mark |
# | %23 | Hash (number sign) |
$ | %24 | Dollar sign |
% | %25 | Percent sign |
& | %26 | Ampersand |
@ | %40 | At symbol |