Python: IDLE does not show South Asian Language Unicode Characters -
when enter following code in idle:
>>> b=u"\u09ff" >>> print(b)
i see following output:
i see box character when want see character(it's bengali character btw). why happen? idle not support south asian , other oriental language unicode fonts?
i using v.3.5.1
actually, getting right character unicode point, see this table learn more unicode points bengali language , corresponding characters, if take example:
>>> print('\u09f8') ৸ >>> print('\u0986') আ >>> print('\u09ff')
Comments
Post a Comment