← Back to Home

URL Encoder / Decoder

Encode or decode URL strings instantly

How to use

  1. Choose Encode to URL-encode text, or Decode to reverse it.
  2. Paste your text/URL into the box; results update instantly.
  3. Copy the encoded/decoded string for use in links, APIs, or logs.
  4. Switch modes to verify round-trips if needed.

Examples

Encode

Text: hello world → Encoded: hello%20world

Decode

Encoded: name%3DAda%26lang%3DJS → Decoded: name=Ada&lang=JS

FAQs

When should I URL-encode?

When putting arbitrary text into query strings or path segments to avoid breaking URLs.

Is my data stored?

No. Encoding/decoding happens in your browser; we do not send or save input.

Why do spaces become %20?

%20 is the encoded form of a space in URLs; some systems also accept + for spaces in queries.

Related tools