Base64 Encoder/Decoder

Encode text to Base64 or decode Base64 back to text. Useful for data transmission, storage, and URL encoding.

Examples

About Base64 Encoding

Encoding

Converts text and binary data into a Base64 string representation using only ASCII characters (A-Z, a-z, 0-9, +, /).

Decoding

Converts Base64 encoded strings back to their original text or binary format.