Python : Print unicode escape characters and string
Couple of examples on how to print unicode string in Python. Nothing fancy, but it helps to explore the ways to print unicode characters in Python.
# - *- coding: utf- 8 - *-
print " 我爱你"
print u'\u0420\u043e\u0441\u0441\u0438\u044f'
goodmorning = "おはよう"
print (goodmorning)
Output :
我爱你
Россия
おはよう
Reference :
See also : Python : Fix SyntaxError: Non-ASCII character in file, but no encoding declared
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.2k Golang : How to search a list of records or data structures
+8k Golang : Randomize letters from a string example
+10.5k Golang : Resolve domain name to IP4 and IP6 addresses.
+7.1k Ubuntu : connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream
+16.7k Golang : read gzipped http response
+5.8k Golang : Extract unicode string from another unicode string example
+13.4k Android Studio : Password input and reveal password example
+16.1k Golang : Loop each day of the current month example
+18.5k Golang : Generate thumbnails from images
+15.1k JavaScript/JQuery : Detect or intercept enter key pressed example
+10k Golang : Edge detection with Sobel method
+14.9k Golang : How do I get the local IP (non-loopback) address ?