DevKits

ASCII 214

Character 214 (Ö)

Latin-1 Supplement

Latin capital letter Ö. Common in Western European languages (French, German, Spanish, Portuguese).

All encodings at a glance

Decimal214
Hexadecimal0xD6
Octal0326
Binary11010110
HTML numeric entityÖ
URL encoding%D6
UTF-8 bytes0xC3 0x96

Code snippets

JavaScript

String.fromCharCode(214); // "Ö"
214.toString(16); // "d6"

Python

chr(214)           # control char Ö
ord(chr(214))      # 214
hex(214)           # '0xd6'

HTML

&#214;   <!-- 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.

Nearby codes