How to use wide characters in ncurses TextBox?

204 Views Asked by At

I need to use get_wch() to get unicode characters with curses in python.

 ch = stdscr.get_wch()
 

I want to use TextBox to get chars. However, it seems it returns just ascii characters. How can I print unicode chars with TextBox?

0

There are 0 best solutions below