URL Encoder/Decoder

Encode and decode text for use in URLs

100% Client-Side Processing

All encoding and decoding operations happen directly in your browser. Your data is never uploaded to any server, ensuring complete privacy and security for your information.

About URL Encoding

URL encoding, also known as percent-encoding, is a mechanism for encoding information in a Uniform Resource Identifier (URI). It's used primarily to handle characters that may have special meaning within URLs.

Common URL encoded characters:

  • Space = %20 or +
  • ! = %21
  • # = %23
  • $ = %24
  • % = %25
  • & = %26
  • ' = %27
  • ( = %28
  • ) = %29
  • * = %2A
  • + = %2B
  • , = %2C
  • / = %2F
  • : = %3A
  • ; = %3B
  • = = %3D
  • ? = %3F
  • @ = %40
  • [ = %5B
  • ] = %5D