TrumanWong

Please paste the content you want to convert here

The result after conversion

About

Base64 encoding requires that 3 8-bit bytes (3*8=24) be converted into 4 6-bit bytes (4*6=24), and then 2 0s are added in front of 6-bit bytes to form 8-bit bytes. If the remaining characters are less than 3 bytes, fill in with 0, and the output characters use '=', so 1 or 2 '=' may appear at the end of the encoded output.

In order to ensure that the output encoding bit readable characters, Base64 developed an encoding table for unified conversion. The size of the encoding table is 2^6=64, which is also the origin of the name Base64.

Base64 Encode Table

CodeCharCodeCharCodeCharCodeCharCodeCharCodeCharCodeCharCodeChar
0A8I16Q24Y32g40o48w564
1B9J17R25Z33h41p49x575
2C10K18S26a34i42q50y586
3D11L19T27b35j43r51z597
4E12M20U28c36k44s520608
5F13N21V29d37l45t531619
6G14O22W30e38m46u54262+
7H15P23X31f39n47v55363/