URL Encoder/Decoder
Encode URLs and query parameters for safe transmission or decode URL-encoded strings back to readable format.
URL Converter
Convert between plain text and URL-encoded format
What is URL Encoding?
URL encoding (percent-encoding) converts characters into a format that can be transmitted over the Internet. Special characters are replaced with a percent sign followed by two hexadecimal digits representing the character's ASCII code.
Common Characters
Space%20
&%26
=%3D
?%3F
#%23