← Back to List
11784번: Hex Code ↗
Solutions
Python 3
113 B | 113 chars
while True: try: a=input() except: break print(bytes.fromhex(a).decode('utf-8'))