Back
Asciify Logo
Asciify
ÒÔ

ASCII 211

Uppercase O with acute accentBox bottom-left corner, double vertical

ASCII 211 is Ó on Windows and ╙ in old DOS.

Ó (Capital O with Acute) is byte 211 in Windows-1252, Unicode U+00D3. Irish surnames start with it: Ó Briain, Ó Súilleabháin, where Ó means descendant of and is followed by a space. English spells the same names O'Brien and O'Sullivan, and forms that reject accents or spaces in a surname break the Irish versions. Store the surname exactly as typed, and sort Ó names with O. UTF-8 stores Ó as C3 93, and 93 is the opening curly quote “ in Windows-1252, so mangled text reads Ó Briain. The HTML entity is Ó.

╙ (Double Up, Single Right) is byte 211 in code page 437, the original IBM PC character set, and maps to Unicode U+2559. It's the bottom-left corner of a box with double sides and a single bottom edge: ║ (186) comes down and ─ (196) heads right toward ╜ at 189. Its top-left counterpart is ╓ at 214. Code page 850 put Ë on this byte, so the corner turns into a capital letter when the file is read with 850. In UTF-8 it's E2 95 99, and the HTML entity is ╙.

Latin LetterBox Drawing

Technical Details

Technical Details

Code Example

</>
#include <stdio.h>
int main(void) {
/* On Windows (code page 1252) byte 211 is Ó.
Modern terminals expect UTF-8, so print the code point, not the byte. */
printf("\u00D3\n"); /* UTF-8: C3 93 */
unsigned char b = 211; /* the raw Windows-1252 byte */
printf("%d 0x%02X\n", b, b); /* 211 0xD3 */
return 0;
}

Code Example

</>
#include <stdio.h>
int main(void) {
/* Byte 211 is ╙ only on a console using code page 437
(chcp 437 on Windows, or DOSBox). On a UTF-8 terminal the
lone byte 0xD3 is invalid and prints as garbage, often �. */
putchar(211);
/* char is signed on x86, so a plain char holding 0xD3 is -45.
Use unsigned char when you compare or index by byte value. */
char c = (char)211;
unsigned char u = 211;
printf("\n%d %d\n", c, u); /* -45 211 */
/* Portable: print the Unicode character as UTF-8 instead. */
printf("\u2559\n"); /* E2 95 99 */
return 0;
}

How to Type It

Windows
Hold Alt and type 0211 on the numeric keypad, with Num Lock on. The leading zero picks the Windows code page. No numeric keypad? In Word, type 00D3 and press Alt+X.
Mac
Press Option+Shift+H.
Linux
In GNOME, or any desktop running IBus, press Ctrl+Shift+U, type d3, then Space. With a Compose key set up, press Compose, apostrophe, O.
Phone
Tap Shift, then long-press O and pick Ó.

How to Type It

Windows
Hold Alt and type 211 on the numeric keypad, with no leading zero. US PCs insert ╙, but PCs set to code page 850, common in Western Europe, insert Ë. No numeric keypad? In Word, type 2559 and press Alt+X.
Mac
Press Control+Command+Space to open the Character Viewer, then search for "box drawings up double and right single".
Linux
In GNOME, or any desktop running IBus, press Ctrl+Shift+U, type 2559, then Space.
Phone
Phone keyboards have no key for it. Tap the character at the top of this page to copy it.

Frequently Asked Questions

  • The zero-less code reads the DOS table, where 211 is ╙ on US machines and Ë under code page 850. Alt+0211 gives Ó on any Windows PC. Under code page 850 the DOS code for Ó is Alt+224, which is also why that code types α on a US machine.

Frequently Asked Questions

  • The zero-less code reads the DOS table, where 211 is ╙ on US machines and Ë under code page 850. Alt+0211 gives Ó on any Windows PC. Under code page 850 the DOS code for Ó is Alt+224, which is also why that code types α on a US machine.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026