Data Protocol

Base64 Studio

Convert binary data to ASCII string representation using Base64 encoding.

Raw Text / Data

Output Result

Result will appear here...

How it Works

Base64 is a binary-to-text encoding scheme. It represents binary data in an ASCII string format by translating it into a radix-64 representation.

The process takes every 3 bytes (24 bits) and splits them into 4 groups of 6 bits each. Each 6-bit group corresponds to one of 64 characters in the Base64 alphabet (A-Z, a-z, 0-9, +, /).

3 Bytes (24 bits) -> [########][########][########]
4 Segments (6 bits) -> [######][######][######][######]