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