DevKits

ASCII 203

Character 203 (Ë)

Latin-1 Supplement

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

All encodings at a glance

Decimal203
Hexadecimal0xCB
Octal0313
Binary11001011
HTML numeric entityË
URL encoding%CB
UTF-8 bytes0xC3 0x8B

Code snippets

JavaScript

String.fromCharCode(203); // "Ë"
203.toString(16); // "cb"

Python

chr(203)           # control char Ë
ord(chr(203))      # 203
hex(203)           # '0xcb'

HTML

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

Nearby codes