๏ปฟ URL Encoder & Decoder - herramienta online gratis
๐Ÿ”—

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: & โ†’ %26
Equals: = โ†’ %3D
Question: ? โ†’ %3F

Common Encoded Characters

Space
โ†’ %20
!
โ†’ %21
#
โ†’ %23
$
โ†’ %24
&
โ†’ %26
=
โ†’ %3D
?
โ†’ %3F
/
โ†’ %2F