Base64 Encode/Decode
Original Text
Base64 Encoded
Base64 encoding converts 3 8-bit bytes (24 bits) into 4 6-bit bytes, with padding '=' characters added when needed. This makes binary data safe for text-based transmission.
| Text | M | a | n | |||||||||||||||||||||
| ASCII | 77 | 97 | 110 | |||||||||||||||||||||
| Bits | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 0 |
| Index | 19 | 22 | 5 | 46 | ||||||||||||||||||||
| Base64 | T | W | F | u | ||||||||||||||||||||