URL Encoder/Decoder

Encode and decode URLs and URI components

Text to Encode
Enter text or URL to encode for safe transmission
Examples
Click to use an example
Information
URL Encoding (percent-encoding) converts special characters to % followed by hex values.
Common encodings:
  • Space → %20
  • @ → %40
  • & → %26
  • ? → %3F
  • = → %3D
Use case: Encoding is essential for including special characters in URLs safely.