Skip to content
sconehead

URL Encoder / Decoder

Percent-encode or decode URL components in your browser.

Stays on this deviceYour text is processed locally in your browser and is not uploaded to our servers.

How to use

  1. Paste a string or encoded value.
  2. Encode or decode.
  3. Copy the result.

Example

hello world & sconehead

URL Encoder / Decoder

This uses encodeURIComponent and decodeURIComponent, which is the right choice for query values and path segments.

FAQ

Is this the same as encodeURI?
No. This encodes reserved characters too, like encodeURIComponent.
Does it fetch the URL?
No. It only transforms text.

Related tools