ASCII 235
Character 235 (ë)
Latin-1 Supplement
Latin small letter ë. Common in Western European languages.
All encodings at a glance
| Decimal | 235 |
| Hexadecimal | 0xEB |
| Octal | 0353 |
| Binary | 11101011 |
| HTML numeric entity | ë |
| URL encoding | %EB |
| UTF-8 bytes | 0xC3 0xAB |
Code snippets
JavaScript
String.fromCharCode(235); // "ë"
235.toString(16); // "eb"Python
chr(235) # control char ë
ord(chr(235)) # 235
hex(235) # '0xeb'HTML
ë <!-- 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.