ASCII 203
Character 203 (Ë)
Latin-1 Supplement
Latin capital letter Ë. Common in Western European languages (French, German, Spanish, Portuguese).
All encodings at a glance
| Decimal | 203 |
| Hexadecimal | 0xCB |
| Octal | 0313 |
| Binary | 11001011 |
| HTML numeric entity | Ë |
| URL encoding | %CB |
| UTF-8 bytes | 0xC3 0x8B |
Code snippets
JavaScript
String.fromCharCode(203); // "Ë"
203.toString(16); // "cb"Python
chr(203) # control char Ë
ord(chr(203)) # 203
hex(203) # '0xcb'HTML
Ë <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00CB. In UTF-8 it encodes to the byte sequence 0xC3 0x8B. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xCB, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.