How Base64 encoding works
Every 3 bytes of input become 4 Base64 characters drawn from A–Z, a–z, 0–9, +, and /, with = padding at the end.
Encode UTF-8 text as standard, padded Base64. Runs entirely in your browser — input is never uploaded.
Every 3 bytes of input become 4 Base64 characters drawn from A–Z, a–z, 0–9, +, and /, with = padding at the end.
Anyone can decode Base64 without a key. Use AES when the input must stay confidential.
Base64 output is about 33% larger than the input. Use Base64URL instead when the value needs to appear in a URL or filename.