Base64 Encoder/Decoder
Encode text or files to Base64 format, or decode Base64 strings back to their original form.
Input
Drag & drop a file here or
Output
output
About This Tool
What is Base64?
Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It's commonly used to encode data that needs to be stored or transferred over media designed for text.
Common Uses
- Embedding images in HTML/CSS
- Encoding email attachments (MIME)
- Storing complex data in JSON
- Data URLs in web applications
Security Note
Base64 is NOT encryption. It's simply an encoding scheme. Anyone can decode Base64 data. Never use it to protect sensitive information.