URL Encoder & Decoder

Encode text and URLs for use in links and query parameters. Decode URL-encoded strings instantly.

Input

Output

URL Encoding

URL encoding (percent encoding) converts special characters into a format safe for URLs. Each special character is replaced with a % followed by its hexadecimal ASCII code.

Common encoded characters:

  • Space → %20
  • ! → %21
  • # → %23
  • & → %26
  • = → %3D