URL Encode/Decode

URL Encode/Decode

Encode or decode complete URLs with URI mode, or process parameter values with URIComponent mode.

Help

Encode or decode complete URLs with URI mode, or process parameter values with URIComponent mode.

Show details
Encoding Options
  • Default: same as URIComponent, using encodeURIComponent / decodeURIComponent directly
  • URI: matches encodeURI / decodeURI and keeps separators such as : / ? & = # for full URLs; for example `https://a.com/a b?x=1&y=2` becomes `https://a.com/a%20b?x=1&y=2`
  • URIComponent: matches encodeURIComponent / decodeURIComponent; the same input `https://a.com/a b?x=1&y=2` becomes `https%3A%2F%2Fa.com%2Fa%20b%3Fx%3D1%26y%3D2`