⚡ TOOLBOX
🔐

Base64 Encode & Decode

TL;DR: Encode text to Base64 or decode Base64 strings back to plain text. Free, fast, and works entirely in your browser.

Frequently Asked Questions

What is Base64 encoding?
Base64 is a group of binary-to-text encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation.
When should I use Base64?
Base64 is commonly used to encode data that needs to be stored or transferred over media designed to deal with text, such as embedding images in HTML/CSS or sending binary data in JSON.
Is Base64 encryption?
No, Base64 is encoding, not encryption. It provides no security and can be easily decoded by anyone.

Related Tools