how can i get unicode letter name

abdo2511

New member
Joined
Jun 1, 2010
Messages
1
Programming Experience
3-5
how can i get Unicode letter name on a textbox
like this on ms word and like the attached file


thnx
 

Attachments

  • aaa.JPG
    aaa.JPG
    57.9 KB · Views: 12
This quote from another post of mine is what you need:
JohnH said:
The names of the characters is useful for a map, check out the Unicode Character Database especially UnicodeData.txt. You can use Integer.Parse (NumberStyles.HexNumber) with the first field to get the code point, and name string from second field.
 
Back
Top