The online base64 decoding/encoding tool is a tool that can decode/encode strings into base64. It uses javascript and is simple and fast.
Base64 encoding requires converting 3 8-bit bytes (3*8=24) into 4 6-bit bytes (4*6=24), and then padding two 0s in front of the 6-bit bytes to form an 8-bit byte. If the remaining characters are less than 3 bytes, they are padded with 0s, and the output character is '=', so 1 or 2 '=' may appear at the end of the text after encoding.
In order to ensure that the output code is readable, Base64 has developed a code table for unified conversion. The size of the code table is 2^6=64, which is also the origin of the name Base64.
This tool can be used to encrypt or decrypt the code in Base64 format. Base64 is one of the most common encoding methods used to transmit 8-bit byte codes on the Internet.
Base64 Conversion Table
The 64 printable characters include uppercase letters A-Z, lowercase letters a-z, numbers 0-9, a total of 62 characters, plus 2 more + and /.