Base64 Encode Online


What can you do with Base64 Encode?

Base64 Encode is very unique tool to encode plain text to Base64 Encoded data.
This tool saves your time and helps to encode base64 data.
This tool allows loading the Plain data URL, which loads plain data encodes to base64 text. Click on the URL button, Enter URL and Submit.
Users can also convert plain data File to base64 encoded text by uploading the file.
Base64 Encoder Online works well on Windows, MAC, Linux, Chrome, Firefox, Edge, and Safari.

What is Base64?

Base64 is numeral system of base-64 which uses 64 digit set and can be represented by 6 bits.

To learn more about Base64, please visit Base64 Wikipedia page.

Why do I need Base64 encoding?

Base64 is an encoding scheme used to represent binary data in an ASCII format. This is useful when binary data needs to be sent over media that are usually designed to handle textual data. Concrete examples would be sending images in an XML file or in an email attachment.

How does Base64 encoding work?

Bytes forming the data are broken into buffers of 24 bits (3 bytes at a time). The resulting buffer of 3 bytes is then broken in 4 packs of 6 bits each. Those 6 bits form a number corresponding to the index in the character set supported by Base64 (A-Z, a-z, 0-9, + and /). If the number of bytes are not in numbers of three, then padding is used; == for 1 byte and = for 2 bytes.

Base64 Encode Example

Input

Bfotool

Output

QmZvdG9vbA==