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
- Paste a string or encoded value.
- Encode or decode.
- 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.