Base64 Encoder/Decoder
Encode text to Base64 or decode Base64 back to text
Encode to Base64
Enter plain text to convert to Base64 encoding
Characters: 0Bytes: 0
Characters: 0
About Base64
Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format by translating it into a radix-64 representation.
- URL Safe: Base64 encoded data can be safely transmitted over media designed for textual data.
- Email Compatible: Commonly used for encoding binary attachments in email.
- Size Increase: Base64 encoding increases the size of data by approximately 33%.
- Character Set: Uses A-Z, a-z, 0-9, +, /, and = for padding.