I'm attempting to display some text in my program using (say) Windows GDI and some of the unicode characters are displayed as boxes? What is up?
See also: What does it mean when my text is displayed as Question Marks?
I'm attempting to display some text in my program using (say) Windows GDI and some of the unicode characters are displayed as boxes? What is up?
See also: What does it mean when my text is displayed as Question Marks?
Usually, that means that the unicode character specified isn't available in that particular font. Try changing fonts to one of the multinational ones, it should go away.
The deal is that the text you are trying to display includes characters that are not supported in the font you are using. The box character is the default substitution character for Unicode text that does not have a glyph in the font.
On Windows, if you are trying to display text in a range of different languages, use a font such as Arial Unicode MS - this includes glyphs for a vast array of different languages. It is a "least common denominator" font - the glyphs will generally be there, but it generally lacks character and some of the glyphs will look a little weird next to each other.
In Windows there are 2 common display problems that occur when trying to display Unicode characters:
text sometimes appears as question marks
text sometimes appears as boxes