I'm using Python for my GUI Application(using PyQt4), and I want to use 'Latin subscript capital letters' in my GUI tableWidget. PyQt4 supports Unicode, so I succeeded in displaying the Unicode characters in the GUI, such as: 'Latin subscript small letters' - U+2090.., 'Subscript Digits' - U+2080.., 'Superscript Digits' - U+2070.., etc.
But I cannot find 'Latin subscript capital letters' in the Unicode character set.
The exact character I need is 'K with Latin subscript capital letter S and E'.
MS Word displays this character successfully using a numerical expression. How can I display this character in Python?