Encoding - ASCII

题目给出了一个ASCII编码的hex串,解码即可.

1
bytes.fromhex(your_hex_string)

Encoding - UU

uuencode编码, 找个网站或自己编写解码程序即可.

To be continued…