Base64 Encoder/Decoder
Encode and decode strings in Base64. Support for texts and files.
Advertisement
What is Base64?
Base64 is an encoding scheme that converts binary data to ASCII text using 64 different characters. It is widely used to transmit binary data through media that only support text, such as email and URLs.
Use Cases
- Embed images in HTML/CSS (Data URLs)
- Binary data transmission in APIs
- Binary data storage in JSON/XML
- Authentication tokens (JWT)
Frequently Asked Questions
Base64 is an encoding method that converts binary data into an ASCII character string. It is used to transmit binary data in formats that only support text.