base64 online decoding tool

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 and displays it as plaintext. Base64 is a relatively common 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 use it with confidence.

Base64 index table

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

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

  Base64 divides the input string into bytes, obtains the binary value corresponding to each byte (if it is less than 8 bits, the high-order bits are filled with 0), then concatenates these binary values, and then divides them into groups of 6 bits (because 2^6=64), if the last group is less than 6 bits, add 0 at the end. Convert each set of binary values ​​to decimal, then find the corresponding symbols in the above table and concatenate them to be the Base64 encoding result.

  Base64 can be used for the underlying binary data encoding of arbitrary data, for applications where only ASCII characters can be transmitted. However, it is most commonly used in the processing and transmission of text data. For example, in MIME-formatted emails, Base64 can be used to encode the content of the email, which is convenient for transmission between computers in different languages ​​without garbled characters. Note that it is transmitted rather than displayed, such as in Western European computers. Using utf-8 encoding can display Chinese normally (with the corresponding font library installed), but it may not be able to transmit Chinese normally, so there is no such concern when converting to Base64.

If there is no special description for Base64 encoding, it is usually agreed that non-ASCII characters are encoded according to the UTF-8 character set.

your footprint: