Base64 Converter
📤 Encode
📥 Decode
RESULT
Encode and decode Base64 strings instantly
Encode text to Base64 or decode Base64 strings back to text. Base64 is a binary-to-text encoding scheme that represents binary data in ASCII string format using 64 characters.
Base64 encoding converts binary data into a text format using 64 ASCII characters: A-Z, a-z, 0-9, +, and /. It's commonly used to encode binary data for transmission over text-based protocols.
Encoding Process:
Example:
Text: "Hello" → Base64: "SGVsbG8="
Base64 encoding is not encryption. Anyone can decode Base64 strings. Never use Base64 to protect sensitive data like passwords or API keys. Use proper encryption (AES, RSA) for security.
<img src="data:image/png;base64,...">Authorization: Basic base64(username:password)