SumProject/my_error/ZHtoUnicode.py
2025-03-22 22:38:52 +08:00

3 lines
92 B
Python

s = input().strip()
unicode_codes = ''.join(f"{ord(c):04X}" for c in s)
print(unicode_codes)