Base64 Encoder & Decoder
Encode and decode Base64
About the Base64 Encoder & Decoder
Encode text and files to Base64 format or decode Base64 back to its original form. Essential for developers working with data transfer and storage.
How to Use
- Enter text or upload a file
- Click "Encode" to convert to Base64
- Or paste Base64 text and click "Decode"
- Copy the result
What is Base64?
Base64 is a binary-to-text encoding scheme that represents binary data using 64 printable ASCII characters. It is commonly used to embed binary data (like images) in text-based formats like HTML, CSS, and JSON.
Common Uses
- Embedding images in HTML/CSS as data URIs
- Encoding email attachments
- Storing binary data in JSON
- Basic data obfuscation (not encryption)