vote up 1 vote down star

I am currently writing a C application and I need to display the following symbols in the terminal : and

Their ASCII character codes are 242 and 243 but I can't get them to be displayed in the DOS terminal.

Any ideas on how I can do this?

flag

1  
The font your terminal uses might not correspond exactly to ASCII, and there likely isn't a standard way of making it so. Be prepared to either work with something in Boost, or platform-specific code. – GMan Nov 1 at 2:31
11  
Pedantic point: ASCII encodes characters only up to 127 (0x7F). Beyond that, characters at code points are implementation-specific. You're speaking of code page 437 (which does have ≥ and ≤ at points 242 and 243). – Michael Petrotta Nov 1 at 2:33
If you're on a modern system, use Unicode strings and wprintf (and variants). msdn.microsoft.com/en-us/library/… – bobince Nov 1 at 2:50

3 Answers

vote up 5 vote down

These are not in ASCII nor in LATIN1 for instance.

link|flag
They aren't even in CP1252, the normal Windows code page, AFAICS. They look like U+2264 and U+2265 in Unicode. – Jonathan Leffler Nov 1 at 2:43
vote up 3 vote down
printf("\xf2\n");

If that doesn't work, it's because of DOS and code pages. Try playing with the CHCP command. You're strolling into locales/platform-specific/give-up-now territory.

link|flag
still nothing with printf("\xf2\n"); ...an equals sign (=) is displayed – Andreas Grech Nov 1 at 2:35
2  
This means you're using code page 850 (en.wikipedia.org/wiki/Code_page_850) which does not encode the ≥ or ≤ glyphs. – Michael Petrotta Nov 1 at 2:40
1  
Try changing to code page 437 with chcp (microsoft.com/resources/documentation/…) – Michael Petrotta Nov 1 at 2:43
vote up 1 vote down

What DOS terminal? If you're compiling to a 32-bit (or 64-bit) binary under Windows, as I'm sure you are, then it's just a console window.

I believe this is the simplest way to set the code page of a console window. It's up to you whether to use code page 437 or a unicode code page (such as UTF-8, which is 65001), but I would suggest Unicode as it will give you more flexibility if you need it later.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.