Base64 Encoder/Decoder
Convert text and data to Base64 format and decode Base64 strings. Supports UTF-8 encoding and data URI generation.
What is Base64 Encoder/Decoder?
Base64 is an encoding scheme that converts binary data into a text format using 64 printable ASCII characters. It is commonly used in email, web APIs, and for embedding images in HTML.
How to Use Base64 Encoder/Decoder
Enter your text or select a file to encode. Use the Encode tab to convert to Base64, or the Decode tab to convert Base64 back to the original content. Toggle Data URI format for embedding.
FAQ
What is Base64?
Base64 is an encoding scheme that represents binary data using 64 printable ASCII characters. It's commonly used in emails and web APIs.
Can I encode files?
Yes, you can upload any file and encode it to Base64. This is useful for embedding files in data URIs.
What's a Data URI?
A Data URI is a way to embed binary data directly in URLs or HTML. It starts with 'data:' followed by the MIME type and Base64-encoded content.