Russian letters not showing by cocos2d::ui::Text on Win32 and Win10

ui::Text::create( "ВЫХОД", "RF Krabuler Regular.ttf", 143.0f )

On android it correctly displayed. But on windows it doesnt shows AT ALL!. How to fix that?

It return false in this place(!!! on letter Ы ):

without letter Ы all fine. But it’s important letter. How make it alright ?

cocos2d-x rc0 3.15

OMG!!! OMG!!! I HAVE SOLUTION!!!

All works fine with ‘u8’ prefix !!!

ui::Text::create( u8"ВЫХОД", “RF Krabuler Regular.ttf”, 143.0f )

Hope, it will help somebody

It’s normal with all characters. You need to use UTF8, as you found it.