Back to techniques

Base64 Encode/Decode

Encoding

Definition

Base64 converts binary data into readable ASCII text using a 64-character alphabet.

Use Case

Common for transporting data in JSON, URLs, email attachments, and API payloads.

Note

Base64 is not encryption. It is reversible encoding and provides no secrecy.

Educational demo only