URL Encoder / Decoder
Encode text to be URL-safe or decode URL-encoded strings.
What is URL Encoding?
URL encoding (Percentage Encoding) converts characters into a format that can be transmitted over the Internet. URLs can only contain ASCII characters. Special characters (like space, @, #, etc.) must be encoded.
Common Encoded Characters
- Space =
%20 - @ =
%40 - / =
%2F - : =
%3A