Closed elechuanwu closed 6 years ago
Can you provide an example which reproduces your issue?
Seems to be a problem. I'll have a look at it as soon as I have some time.
In the meantime you can explicitly convert it to unicode before printing:
print(unicode(colorful.red(u'🐧🎉🐧')))
When using Python 3 it won't be a problem:
print(colorful.red('🐧🎉🐧'))
print(colorful.red('漢字'))
Fixed with #9
Thank you.
Using colorful can not print Chinese characters. This module supports ASCII only?