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