Encoder / Decoder Base64

Codifica testo in Base64 o decodifica Base64 in testo. UTF-8 sicuro con variante base64url.

Inserisci un input sopra per vedere il risultato.

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