Encoder / Decoder URL

Codifica stringhe per URL (percent-encoding) o decodifica in testo semplice.

Inserisci un input sopra per vedere il risultato.

What URL encoding does

URLs and HTTP headers are restricted to a small ASCII subset. Anything outside that set — including spaces, accented letters, emoji, and several reserved punctuation characters — has to be percent-encoded: replaced by % followed by two hex digits per byte. café becomes caf%C3%A9 (UTF-8). Decoding reverses that.

When to use which scope

Common gotchas