ASCII 216
Character 216 (Ø)
Latin-1 Supplement
Latin capital letter with diacritic. Used in Northern European and Icelandic alphabets.
All encodings at a glance
| Decimal | 216 |
| Hexadecimal | 0xD8 |
| Octal | 0330 |
| Binary | 11011000 |
| HTML numeric entity | Ø |
| URL encoding | %D8 |
| UTF-8 bytes | 0xC3 0x98 |
Code snippets
JavaScript
String.fromCharCode(216); // "Ø"
216.toString(16); // "d8"Python
chr(216) # control char Ø
ord(chr(216)) # 216
hex(216) # '0xd8'HTML
Ø <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00D8. In UTF-8 it encodes to the byte sequence 0xC3 0x98. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xD8, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.