ASCII 214
Character 214 (Ö)
Latin-1 Supplement
Latin capital letter Ö. Common in Western European languages (French, German, Spanish, Portuguese).
Common uses & context
Decimal 214 (0xD6) is Character 214, part of the Latin-1 Supplement (128–255). Latin capital letter Ö. Common in Western European languages (French, German, Spanish, Portuguese). It renders as 'Ö' and its binary byte is 11010110.
This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'Ö' is the single byte 0xD6. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0x96. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00D6, and in HTML you can write it as Ö.
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) -->Programming notes
- ▸Single byte 0xD6 in Latin-1, but the multi-byte sequence 0xC3 0x96 in UTF-8 — never assume one byte per character above code 127.
- ▸Unicode code point U+00D6; HTML numeric entity Ö.
- ▸If 'Ö' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.
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.
Frequently asked questions
What character is ASCII code 214?
ASCII code 214 is the character 'Ö' (Character 214). In hexadecimal it is 0xD6, in octal 0326, and in binary 11010110.
What is 0xD6 in ASCII?
Hexadecimal 0xD6 equals decimal 214, which is the character 'Ö' (Character 214). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xD6 = 214) and look up that code point.
How do I write the character with code 214 in code?
In JavaScript use String.fromCharCode(214); in Python use chr(214); in HTML use the numeric entity Ö. In a URL it is percent-encoded as %D6, and in UTF-8 it is stored as the byte sequence 0xC3 0x96.
Is 'Ö' part of standard ASCII?
No. Standard ASCII covers codes 0–127 only. 'Ö' is code 214, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xD6 in Latin-1 but a multi-byte sequence (0xC3 0x96) in UTF-8.