11 lines
246 B
Python
11 lines
246 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
|
|
def main():
|
|
text = sys.argv[1] if len(sys.argv) > 1 else input("Enter Chinese: ")
|
|
escaped = ''.join(f'\\x{b:02X}' for b in text.encode('utf-8'))
|
|
print(escaped)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|