displaying unicode strings?

Started by
10 comments, last by Mastaba 16 years, 11 months ago
ok I gotcha, so what I want isnt really possible. Guess I have to live with 's','c','h','d' until I make a GUI. thanks anyway.
Advertisement
If you want to display the characters in a Windows console window, it is very doable. By default, the console window uses a font that is compatible with the DOS font.

#include <iostream>int main(int argc, char** argv){	std::cout << "\x03\x04\x05\x06" << std::endl;	return 0;}



That prints all four card suits in a console window.
.

This topic is closed to new replies.

Advertisement