Base64 Encoder/Decoder
Encode text or files to Base64, or decode Base64 strings back to text.
Text to Encode
0 characters
Base64 Output
0 characters
About 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 to handle text.
Common uses: Email attachments, data URLs, storing complex data in JSON/XML, API authentication tokens.
Note: Base64 is an encoding, not encryption. It doesn't provide security for sensitive data.