Advertisement

URL Encoder / Decoder

Encode special characters for safe URL transmission or decode percent-encoded URL strings.

Advertisement

About URL Encoding

URL encoding (also known as percent-encoding) converts characters that are not allowed in URLs into a format that can be transmitted safely over the internet. Special characters like spaces, &, =, and # are replaced with a % sign followed by their hexadecimal code.

Common Encoded Characters

  • Space → %20
  • & → %26
  • = → %3D
  • # → %23
  • + → %2B
  • / → %2F
Advertisement