โฐ
๐ Base64
๐ Common
๐ Life
๐ Crypto
๐ Encode/Decode
๐ป Developer
๐ผ๏ธ Image
๐ฎ Fun
Base64 Encode/Decode
Input
Length:
0
Copy Input
Clear
Output
Length:
0
Copy Output
Encode โ Base64
Decode โ Base64
Swap
How Base64 works
Grouping: every 3 bytes (24 bits) are split into 4 groups of 6 bits.
Alphabet: each 6-bit value maps to one character from AโZ, aโz, 0โ9, +, /.
Padding: if input length is not a multiple of 3, pad with 0 bits and append = or ==.
Text safety: Base64 is for transporting binary over text channels; it is not encryption.