base64 online decoding tool

The base64 online decoding tool provides you with base64 encoding, base64 online decoding, base64 encryption and decryption, and the string is encrypted in Base64 format, and the encrypted Base64 online decoding and decryption are displayed as plaintext. Base64 is a relatively ordinary online encryption algorithm. When solving Chinese garbled code, encoding Chinese in different ways can effectively avoid Chinese garbled code. This site will not record any information about you, please feel free to use it.

Base64 index table

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

ValuecharacterValuecharacterValuecharacterValuecharacter
0A16Q32g48w
1B17R33h49x
2C18S34i50y
3D19T35j51z
4E20U36k520
5F21V37l531
6G22W38m542
7H23X39n553
8I24Y40o564
9J25Z41p575
10K26a42q586
11L27b43r597
12M28c44s608
13N29d45t619
14O30e46u62+
15P31f47v63/

Base64 splits the input string by bytes, obtains the binary value corresponding to each byte (if it is less than 8 bits, the high bit is supplemented), then connects these binary values, and then divides them into a 6-bit group (because 2^6=64), and if the last group is less than 6 bits, the end is supplemented by 0. Convert each set of binary values ​​into decimal, and then find the corresponding symbols in the above table and connect them together. This is 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. For example, in MIME format emails, Base64 can be used to encode mail content, which is convenient for transmission between computers in different languages ​​without garbled code. Note that it is transmission rather than display. For example, using utf-8 encoding on computers in Western Europe can display Chinese normally (the corresponding font library is installed), but it may not be able to transmit Chinese normally. At this time, there is no such concern when converting to Base64.

If Base64 encoding is not specified, it is usually agreed that non-ASCII characters are encoded according to the UTF-8 character set.

Access Log:
Advertising area 1