DevKits

ASCII 235

Character 235 (ë)

Latin-1 Supplement

Latin small letter ë. Common in Western European languages.

All encodings at a glance

Decimal235
Hexadecimal0xEB
Octal0353
Binary11101011
HTML numeric entityë
URL encoding%EB
UTF-8 bytes0xC3 0xAB

Code snippets

JavaScript

String.fromCharCode(235); // "ë"
235.toString(16); // "eb"

Python

chr(235)           # control char ë
ord(chr(235))      # 235
hex(235)           # '0xeb'

HTML

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

Unicode & UTF-8 note

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

Nearby codes