Skip to content
DevTools

URL Encode / Decode

Free URL encode and decode tool for query strings and percent-encoding. Private, instant, browser-only.

Processed locally in your browser — nothing is uploaded.

Loading tool…

About this tool

URL (percent) encoding makes strings safe for query parameters and path segments. Use this free encoder/decoder with encodeURIComponent-style semantics—private and instant in the browser.

Frequently asked questions

When should I URL-encode?
Whenever you put user input or special characters into a query string, fragment, or form body that expects application/x-www-form-urlencoded style values.
Is + treated as a space?
On decode, + is treated as a space (common form encoding). Encode uses encodeURIComponent, which encodes spaces as %20.