Codificador / Decodificador URL

Codifica cadenas para URLs (porcentaje) o decodifica de vuelta a texto plano.

Introduce un valor arriba para ver el resultado.

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