DevKits

ASCII 222

Character 222 (Þ)

Latin-1 Supplement

Latin capital letter with diacritic. Used in Northern European and Icelandic alphabets.

All encodings at a glance

Decimal222
Hexadecimal0xDE
Octal0336
Binary11011110
HTML numeric entityÞ
URL encoding%DE
UTF-8 bytes0xC3 0x9E

Code snippets

JavaScript

String.fromCharCode(222); // "Þ"
222.toString(16); // "de"

Python

chr(222)           # control char Þ
ord(chr(222))      # 222
hex(222)           # '0xde'

HTML

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

Nearby codes