Skip to content
FizzKit

URL Encode / Decode

Encode text for safe use in URLs or decode percent-encoded strings back to readable characters. Handles reserved characters and UTF-8 correctly.

Runs locally in your browser
Plain text
0 chars · 1 line
Percent-encoded
Output will appear here…
Encodes reserved characters (/ ? # & =) too — use for query values.

About URL Encode / Decode

Encode text for safe use in URLs or decode percent-encoded strings back to readable characters. Handles reserved characters and UTF-8 correctly.

URL Encode / Decode is part of FizzKit — a collection of focused, browser-based tools. Because everything runs locally, it works offline once loaded and never exposes your data to a remote server.

Frequently asked questions

`encodeURI` preserves reserved characters like `/` and `?`; `encodeURIComponent` encodes everything that is not alphanumeric. This tool supports both modes.