Base64 Encoder & Decoder
Encode text to Base64.
Base64 encodes binary or text data using 64 safe characters.
The math behind it
Every 3 bytes (24 bits) split into four 6-bit groups, each mapped to a Base64 character.
Worked example
Hello becomes SGVsbG8=.
FAQ
Why use Base64?
To send binary data safely through text-only channels like email or URLs.