Get glyph from typeface with unicode (UTF8 codepoint)

Use a CharPointer_UTF32 if you want to convert a code point to a String:

juce_wchar codePoint = 0x2603;
String s(CharPointer_UTF32(&codePoint), 1);


Roeland