What Is Base64 Encoding?
Base64 is a binary-to-text encoding scheme that converts binary data into a set of 64 ASCII characters. It's used when binary data needs to be transmitted through text-based protocols like email, JSON, or HTTP headers.
Common Uses of Base64
How to Use the Base64 Tool
Encoding vs Encryption
**Important**: Base64 is encoding, NOT encryption.
Never use Base64 alone for sensitive data. It provides zero security.
Examples
Encoding
Input: `Hello World`
Output: `SGVsbG8gV29ybGQ=`
Basic Auth Header
`Authorization: Basic dXNlcjpwYXNzd29yZA==`
Decoded: `user:password`