// Encode text → Base64
Hello, world!SGVsbG8sIHdvcmxkIQ==Start typing to search, or pick a tool.
Encode UTF-8 text to Base64 or decode Base64 back to text. Base64 is encoding, not encryption — anyone with the encoded value can read it.
Text
Base64
// Encode text → Base64
Hello, world!SGVsbG8sIHdvcmxkIQ==// Decode Base64 → text
SGVsbG8sIHdvcmxkIQ==Hello, world!No. Base64 is an encoding, not encryption. It is fully reversible and provides no confidentiality.
Yes. Text is encoded as UTF-8 bytes before base64 conversion, so emoji and accented characters work correctly.
No. Encoding and decoding happen entirely in your browser.