URL Encoder / Decoder

Encode special characters for safe use in URLs, or decode percent-encoded strings back to readable text.

About URL Encoding

URL encoding (percent-encoding) replaces unsafe ASCII characters with a % followed by two hex digits. Characters like spaces, &, =, and ? must be encoded when used in query strings or path segments.

All processing happens in your browser — your data is never sent to any server.