sure, here
#include <SFML/Graphics.hpp>
#include <SFML/System.hpp>
int main(int argc, char* argv[])
{
sf::Font MyFont;
sf::Text _namelabel;
sf::RenderWindow App(sf::VideoMode(800, 600, 32), "Sample");
MyFont.LoadFromFile("msgothic.ttc");
_namelabel = sf::Text(L"\u3082", MyFont, 22);
while (App.IsOpened())
{
sf::Event Event;
while (App.GetEvent(Event))
{
if (Event.Type == sf::Event::Closed)
App.Close();
if ((Event.Type == sf::Event::KeyPressed) && (Event.Key.Code == sf::Key::Escape))
App.Close();
}
App.Clear(sf::Color(0, 0, 0));
_namelabel.SetPosition(10,10);
App.Draw(_namelabel);
App.Display();
}
return EXIT_SUCCESS;
}
Same result for me.
Maybe I should add that I use code::blocks (mingw), windows7 and use a dll version (not static).
Changed the font to the ttc version here since the ttfs might not be available for everyone.