Convert Hex Oct Dec to Chr 1 minutes | 100 words hex to chr: hex = input("hex-> ") hex_list = hex.split() ans = "" for h in hex_list: ans += chr(int(h, 2)) print(ans) example: hex-> …