Encode text to Base64 or decode Base64 strings back to plain text — instantly, in your browser.
Base64 is an encoding scheme that converts binary data into a set of 64 ASCII characters (A–Z, a–z, 0–9, +, /). It is widely used to safely transmit data over systems that only handle text — such as embedding images in HTML/CSS, sending binary data in JSON APIs, encoding email attachments, and storing credentials in HTTP headers. Base64 is an encoding, not encryption — it is easily reversible.