Codificador / Decodificador Base64

Codifica texto a Base64 o decodifica Base64 a texto. Compatible con UTF-8 y variante base64url.

Introduce un valor arriba para ver el resultado.

What Base64 actually does

Base64 turns arbitrary bytes into 64 ASCII characters (A–Z, a–z, 0–9 plus two extras). Three input bytes become four output characters, so the result is roughly 33% larger than the input. It's an encoding, not encryption — anyone can decode it.

When to use Base64

Standard vs base64url

Common gotchas