URI Encoder/Decoder

Encode and decode URI strings with percent-encoding

Input
Enter text to encode or URI string to decode
Output
Result will appear here
Tips

Ctrl+Enter to encode, Shift+Enter to decode

encodeURIComponent vs encodeURI:

  • encodeURIComponent — Encodes everything except: A-Z a-z 0-9 - _ . ! ~ * ' ( )
  • encodeURI — Preserves URI structure, keeps: : / ? # [ ] @ ! $ & ' ( ) * + , ; =

• Use encodeURIComponent for query parameters

• Use encodeURI for full URLs