

However as we said earlier, Base64 converts the data in 8 bit binary form to chunks of 6 bits.

You can see here that each character is represented by 8 bits. The first step is to convert this string into binary. Suppose we have string "Go win" and we want to convert it into Base64 string.

In fact, size of a Base64 encoded piece of information is 1.3333 times the actual size of your original data.īase64 is the most widely used base encoding technique with Base16 and Base32 being the other two commonly used encoding schemes. It is important to mention here that Base64 is not an encryption or compression technique, although it can sometimes be confused as encryption due to the way it seems to obscure data. Base64 encoding is a way to convert data (typically binary) into the ASCII character set.
