URL ENCODER/DECODER

Encode or decode URL components

Local Processing
Output will appear here...

Common URL Encodings

%20

Space

&%26

Ampersand

=%3D

Equals

?%3F

Question mark

#%23

Hash

/%2F

Slash

%%25

Percent

+%2B

Plus

About URL Encoding

URL encoding converts special characters into a format that can be safely transmitted in URLs. It replaces unsafe characters with a "%" followed by their hexadecimal value.

  • • Use encoding for query parameters and form data
  • • Safe characters (A-Z, a-z, 0-9, -, _, ., ~) are not encoded
  • • Spaces can be encoded as %20 or + (context dependent)