Base64 Encode/Decode
Encode or decode Base64 strings
What is Base64 Encoding?
Base64 is a binary-to-text encoding scheme that represents binary data using 64 printable ASCII characters. It is commonly used to encode data in email, URLs, and data URIs.
When to use Base64
Use Base64 when you need to transmit binary data over text-based protocols, embed images in HTML/CSS, or store binary data in JSON.
Privacy
All encoding and decoding happens in your browser. No data is sent to any server.