URL Encoder & Decoder
Result will appear here after encoding or decoding...
â„šī¸ What is URL Encoding?

URL encoding converts characters into a format that can be transmitted over the Internet. Special characters are replaced with a "%" followed by two hexadecimal digits.

Common Characters:

  • Space → %20 or +
  • ! → %21
  • @ → %40
  • # → %23
  • & → %26
  • = → %3D
Before: hello world!
After: hello%20world%21
Copied to clipboard! ✓