base64 online decoding tool

The base64 online decoding tool provides you with base64 encoding, base64 online decoding, base64 encryption and decryption, encrypts the string in Base64 format, and decodes and decrypts the encrypted Base64 online as clear text. Base64 is a relatively ordinary online encryption algorithm. When solving Chinese garbled characters, encoding Chinese in different ways can effectively avoid Chinese garbled characters. This site will not record any of your information, please feel free to use it.

Base64 index table

Base64 encoding uses 64 printable ASCII characters (A-Z, a-z, 0-9, +,/) to encode arbitrary byte sequence data into an ASCII string, with the "=" symbol used as a suffix.

numerical valuecharacternumerical valuecharacternumerical valuecharacternumerical valuecharacter
0A16Q32G48w
1B17R33h49x
2C18S34I50y
3D19T35j51Z
4E20U36k520
5F21V37L531
6G22W38m542
7H23X39N553
8I24Y40o564
9J25Z41p575
10K26A42Q586
11L27B43r597
12M28C44s608
13N29D45t619
14O30E46u62+
15P31F47v63/

  Base64 splits the input string into bytes, obtains the corresponding binary value for each byte (if it is less than 8 bits, the high bit is filled with 0), and then connects these binary values in series, and then splits them in groups of 6 bits (because 2 ^ 6 = 64). If the last group is less than 6 bits, it is added with 0 at the end. Convert each group of binary values into decimal, and then find the corresponding symbols in the above table and connect them in series to obtain the Base64 encoding result.

  Base64 can be used for the underlying binary data encoding of any data, for applications where only ASCII characters can be transmitted. However, it is most commonly used for the processing and transmission of text data, such as in MIME format emails. Base64 can be used to encode the content of emails, which is convenient for transmission between computers in different languages without garbled characters. Note that it is transmission rather than display. For example, in Western Europe, the computer using utf-8 encoding can display Chinese normally (with corresponding font libraries installed), but it may not be able to transmit Chinese normally. In this case, converting to Base64 will not have this concern.

Base64 encoding Unless otherwise specified, non-ASCII characters are typically encoded in the UTF-8 character set.

Your footsteps: