Base64 Encode/Decode

Encode text to Base64 or decode Base64 back to text. Base64 is commonly used to encode binary data for transmission over text-based protocols.

Input

Output

About Base64

Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It's commonly used when there is a need to encode binary data that needs to be stored and transferred over media that are designed to deal with text.

Common uses include encoding email attachments, embedding images in HTML/CSS, and encoding authentication credentials.