URL Encoder / Decoder

Encode and decode URLs with encodeURI vs encodeURIComponent options.

Encoded
https%3A%2F%2Fpromptfoo.tech%2Fsearch%3Fq%3Dmcp%20servers%20%26%20agents
Decoded
https://promptfoo.tech/search?q=mcp servers & agents
Runs entirely in your browser — nothing you paste is sent to a server.

About this tool

Encode or decode URLs and query strings with the right helper — encodeURI for whole URLs, encodeURIComponent for individual params. Both sides update live.

How it works

  1. Paste a URL or query fragment.
  2. Toggle between encodeURI and encodeURIComponent.
  3. See encoded and decoded output side by side.

When to use it

  • Debugging why a URL parameter reaches the server malformed.
  • Building tracking links safely.
  • Round-tripping JWTs or Base64 values embedded in query strings.

FAQs

Related resources