URL Encoder Decoder
Encode/Decode URLs
Encoder Result
About Encoder
encodeURI
This will replace all characters except the following with the appropriate UTF-8 escape sequences
Reserved characters | ; , / ? : @ & = + $ |
Score | # |
Unescaped characters | alphabetic a-z A-Z, decimal digits 0-9, - _ . ! ~ * ' ( ) |
"&", "+", and "=" are not encoded as they are special characters in GET and POST requests.
encodeURIComponent
This escapes all characters except the following: alphabetic a-z A-Z, decimal digits 0-9, - _ . ! ~ * ' ( )
About Decoder
Replaces each escape sequence in the encoded URI with the character that it represents except the characters that cannot be encoded.