URL Encoder / Decoder In-Browser

Advertisement

Input
Mode:
Output
Result will appear here.

Advertisement

encodeURIComponent vs encodeURI

encodeURIComponent encodes all characters except: A–Z a–z 0–9 - _ . ! ~ * ' ( ). Use this for encoding query parameter values.

encodeURI is designed to encode a full URL. It won't encode: : / ? # [ ] @ ! $ & ' ( ) * + , ; =. Use this when you want to encode an entire URL while preserving its structure.