Chinese characters are composed of two English characters, Cai is composed of "C" and "C5" expressed in hexadecimal of ASCII code, and Huang is composed of "BB" and "CA".
These two hexadecimal numbers are expressed in decimal, namely 178, 197 and 187 and 202.
Comparing the above code, we can see that every word is composed of \xxx\xxx.
178 corresponds to 262.
197 corresponds to 305.
187 corresponds to 273.
202 corresponds to 655438+02.
Originally, I wanted to derive an algorithm based on this correspondence, but it seems a bit troublesome. The simplest method is to traverse all the corresponding relationships between ASCII and ciphertext to form a database.
Then combine them into Chinese characters according to the corresponding relationship for decoding.
Think about the specific procedures yourself ~ hehe