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