ASCII 206
Character 206 (Î)
Latin-1 Supplement
Latin capital letter Î. Common in Western European languages (French, German, Spanish, Portuguese).
All encodings at a glance
| Decimal | 206 |
| Hexadecimal | 0xCE |
| Octal | 0316 |
| Binary | 11001110 |
| HTML numeric entity | Î |
| URL encoding | %CE |
| UTF-8 bytes | 0xC3 0x8E |
Code snippets
JavaScript
String.fromCharCode(206); // "Î"
206.toString(16); // "ce"Python
chr(206) # control char Î
ord(chr(206)) # 206
hex(206) # '0xce'HTML
Î <!-- 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.