Encode text to Base64 or decode Base64 to text instantly
Encode
Text 'hello world' → Base64 aGVsbG8gd29ybGQ=
Decode
Base64 'U3BhY2VzICYgTGluZXM=' → Text 'Spaces & Lines'
API headers
Encode small payloads for basic auth or data URIs.
What is Base64?
A text-safe encoding of binary data using ASCII characters.
Why did decoding fail?
Input may be invalid or missing padding (=). Check characters and spacing.
Is my data stored?
No. All encoding/decoding happens locally in your browser.