for example i have FlxText object
var t:FlxText=new FlxText();
I can show on my app the unicode symbol for example "1" , use
t.text="1";
t.text="\n0031";//work too
but i can't show the unicode symbols(from same font), like
t.text="";
t.text="\u1F5FB";// mount fuji
then i compile my project to cpp debug and can't see mount_fuji symbols. Only square frame. What wrong with me? :)
Code tested on win7 64.
Codes was taken use FontForge programm. Any help will be good