ASCII 211
Character 211 (Ó)
Latin-1 Supplement
Latin capital letter Ó. Common in Western European languages (French, German, Spanish, Portuguese).
All encodings at a glance
| Decimal | 211 |
| Hexadecimal | 0xD3 |
| Octal | 0323 |
| Binary | 11010011 |
| HTML numeric entity | Ó |
| URL encoding | %D3 |
| UTF-8 bytes | 0xC3 0x93 |
Code snippets
JavaScript
String.fromCharCode(211); // "Ó"
211.toString(16); // "d3"Python
chr(211) # control char Ó
ord(chr(211)) # 211
hex(211) # '0xd3'HTML
Ó <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00D3. In UTF-8 it encodes to the byte sequence 0xC3 0x93. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xD3, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.