I need to show Unicode characters in a QLabel. This code works fine on Debian, but on Windows I just get a square.
FWIW, the browser does show this character when used in a webpage, and I can copy/paste it in Wordpad, so I guess it's not a font issue.
What am I missing?

Qt Code:
  1. #include <QtGui/QApplication>
  2. #include <QLabel>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication app(argc, argv);
  7.  
  8. QLabel label(QChar(10269)); // ⠝ (U+281D) is points 1,3,4,5 in Braille
  9. label.show();
  10.  
  11. return app.exec();
  12. }
To copy to clipboard, switch view to plain text mode