How to write "Ni Hao" ("Hello") in Chinese to standard output using UTF-8 in Python

1 Answer

0 votes
# Directly print the Chinese characters
print("你好")

# Using Unicode escape sequences
print("\u4f60\u597d")

# Explicitly encode and decode in UTF-8
print("你好".encode('utf-8').decode('utf-8'))



'''
run:

你好
你好
你好

'''

 



answered Aug 16, 2025 by avibootz
...