URL Encoder/Decoder

Encode URLs for safe transmission or decode URL-encoded text back to readable format. Support for full URL encoding and component encoding with detailed URL parsing.

Encoding Mode:

Common URL Encodings:

Space
%20
!Exclamation Mark
%21
"Quotation Mark
%22
#Hash/Pound
%23
$Dollar Sign
%24
%Percent Sign
%25
&Ampersand
%26
'Apostrophe
%27
+Plus Sign
%2B
=Equals Sign
%3D
?Question Mark
%3F
@At Symbol
%40
Encoding Methods:
encodeURIComponent(): Encodes all special characters except: A-Z a-z 0-9 - _ . ! ~ * ' ( )
encodeURI(): Encodes special characters but preserves URL structure (: / ? # [ ] @)

All Tools