Tagged Questions

4
votes
3answers
2k views

Displaying a unicode text in C#

My App displays English, Japanese and Chinese characters on a TextBox and a LinkLabel. Currently, I check if there are unicode characters and change the font to MS Mincho or else leave it in Tahoma. ...
1
vote
1answer
966 views

UnicodeString to char* (UTF-8)

I am using the ICU library in C++ on OS X. All of my strings are UnicodeStrings, but I need to use system calls like fopen, fread and so forth. These functions take const char* or char* as arguments. ...
0
votes
3answers
125 views

UnicodeString w/ String Literals vs Hex Values

Is there any conceivable reason why I would see different results using unicode string literals versus the actual hex value for the UChar. UnicodeString s1(0x0040); // @ sign UnicodeString ...