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