🔗

URL Encoder/Decoder

Encode and decode URLs with special characters

When to use each:

  • encodeURIComponent: For query parameters, form data, or any text that's part of a URL
  • encodeURI: For full URLs where you want to keep the structure (://?#&=)

All processing happens locally in your browser.