Encodeur / Décodeur URL

Encodez en pourcentage pour URLs ou décodez vers texte brut.

Saisissez une entrée ci-dessus pour voir le résultat.

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