URL Encoder / Decoder

Strings für URLs prozent-codieren oder zurück in Klartext decodieren.

Geben Sie oben eine Eingabe ein, um das Ergebnis zu sehen.

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