Base64 encode and decode
Encode and decode text, Korean, Japanese, and emoji between Base64 and plain text. Everything happens in the browser without uploads.
About Base64
Base64 is an encoding that represents data such as text, images, and keys using only letters, digits, and a couple of symbols. It is widely used in email attachments, JSON bodies, URL parameters, and tokens.
Base64 is not encryption. Anyone who has the encoded value can decode it and read the original. Do not use it to hide passwords or personal data. It only exists to carry binary data safely through text-only channels.
Multibyte characters such as Korean, Japanese, and emoji encode and decode losslessly. All processing happens on your device, and no input ever leaves your browser.