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') ৿ 

enter image description here


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -