Base64 Encoder / Decoder

Text in Base64 codieren oder Base64 in Text decodieren. UTF-8-sicher und base64url-Variante.

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

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