Text Diff Checker
Compare two pieces of text and see line-by-line additions and deletions, like a Git diff. Highlights every change.
Encode any text to Base64 and decode Base64 back to plain text. Full Unicode support, runs entirely in your browser.
Base64 is a binary-to-text encoding scheme that represents binary data using only 64 ASCII characters (AโZ, aโz, 0โ9, +, /). It’s used to transmit binary data through systems that only handle text safely โ for example, email attachments, JSON payloads, and data URLs in CSS or HTML.
data:image/png;base64,...Base64 is not encryption. Anyone can decode it instantly. Don’t use Base64 for sensitive data โ use proper encryption like AES.