DevKits

ASCII 206

Character 206 (Î)

Latin-1 Supplement

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

All encodings at a glance

Decimal206
Hexadecimal0xCE
Octal0316
Binary11001110
HTML numeric entityÎ
URL encoding%CE
UTF-8 bytes0xC3 0x8E

Code snippets

JavaScript

String.fromCharCode(206); // "Î"
206.toString(16); // "ce"

Python

chr(206)           # control char Î
ord(chr(206))      # 206
hex(206)           # '0xce'

HTML

&#206;   <!-- numeric entity (no named entity for this character) -->

Unicode & UTF-8 note

In Unicode this is U+00CE. In UTF-8 it encodes to the byte sequence 0xC3 0x8E. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xCE, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes