URL Encoder/Decoder
Easily encode or decode URLs for safe transmission over the web
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.
Common URL Encoding Examples
Character | URL Encoded |
---|---|
Space | %20 |
! | %21 |
# | %23 |
$ | %24 |
& | %26 |
' | %27 |
( | %28 |
) | %29 |
+ | %2B |
, | %2C |
/ | %2F |
: | %3A |
= | %3D |
? | %3F |
@ | %40 |