O with acute
ASCII code 211 (0xD3) represents the O with acute character in the extended ASCII table (128–255). It is a Latin accented character commonly used in European languages such as French, German, Spanish, Portuguese, and Scandinavian languages. The extended ASCII range builds upon the original 128-character ASCII set, adding accented letters, currency symbols, typographic marks, and mathematical symbols. These characters are defined by the Windows-1252 (CP-1252) encoding, which is a superset of ISO 8859-1 (Latin-1). In modern web development, UTF-8 encoding is preferred, but understanding extended ASCII remains important for legacy system compatibility and character encoding troubleshooting.
| Decimal | 211 |
| Octal | 323 |
| Hexadecimal | 0xD3 |
| Binary | 11010011 |
| HTML Code | Ó |
| HTML Entity | Ó |
| Unicode | U+00D3 |
| Unicode Name | LATIN CAPITAL LETTER O WITH ACUTE |
| URL Escape | %D3 |
| Quoted-Printable | =D3 |
| UTF-8 (Hex) | C3 93 |
| Category | Extended — Latin Accented Letters |
// Character literal
let char = 'Ó';
// Using char code
let char2 = String.fromCharCode(211);
// Unicode escape
let char3 = '\u00D3'; # Character literal
char = 'Ó'
# Using chr()
char = chr(211)
# Using ord() to get code
code = ord('Ó') # Returns 211 <!-- Direct character -->
Ó
<!-- HTML entity (numeric) -->
Ó
<!-- Hex entity -->
Ó // Character literal
char c = 'Ó';
// Using cast
char c2 = (char)211;
// To get code from char
int code = (int)'Ó'; // Returns 211