URL Encoder/Decoder

Encode and decode URLs

Plain Text

Encoded URL

About 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 a "%" followed by two hexadecimal digits.

Common Encodings

Space → %20
! → %21
# → %23
& → %26

Use Cases

  • Passing parameters in URLs
  • Form data submission
  • API requests
  • Search queries