Base64 Converter
Encode and decode Base64 strings
About Base64
- • Base64 is a binary-to-text encoding scheme
- • Commonly used for encoding binary data in email attachments
- • Uses 64 characters: A-Z, a-z, 0-9, +, and /
- • Padding with = is used to ensure the string length is a multiple of 4
- • Not suitable for sensitive data as it's easily reversible