๐
URL Encoder & Decoder
Encode or decode URLs for safe web transmission
Input
Output
Understanding URL Encoding
๐ค What is URL Encoding?
URL encoding converts characters into a format that can be transmitted over the Internet. Special characters are replaced with "%" followed by two hexadecimal digits.
Example:
"Hello World" โ "Hello%20World"
"a=b&c=d" โ "a%3Db%26c%3Dd"
๐ฏ When to Use
URL encoding is essential when passing data through URLs, form submissions, or API calls. It ensures special characters don't break your links.
Spaces:
%20 or +Amps:
& โ %26Equals:
= โ %3DQuestion:
? โ %3FCommon Encoded Characters
Space
โ %20
!
โ %21
#
โ %23
$
โ %24
&
โ %26
=
โ %3D
?
โ %3F
/
โ %2F