Web Analytics

URL Encoder / Decoder

Encode and decode URLs for safe transmission with various encoding options including standard URL encoding and plus encoding.

Input

Enter URL or text to encode/decode

Output

Encoded/decoded result

URL Encoding Information

Standard URL Encoding

Converts special characters to percent-encoded format (%XX) for safe transmission in URLs.

  • Space → %20
  • ! → %21
  • # → %23
  • @ → %40

Plus Encoding

Alternative encoding where spaces become + (commonly used in form data).

  • Space → +
  • + → %2B
  • Other special chars → %XX