ASCII 235
Character 235 (ë)
Latin-1 Supplement
Latin small letter ë. Common in Western European languages.
Common uses & context
Decimal 235 (0xEB) is Character 235, part of the Latin-1 Supplement (128–255). Latin small letter ë. Common in Western European languages. It renders as 'ë' and its binary byte is 11101011.
This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'ë' is the single byte 0xEB. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0xAB. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00EB, and in HTML you can write it as ë.
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) -->Programming notes
- ▸Single byte 0xEB in Latin-1, but the multi-byte sequence 0xC3 0xAB in UTF-8 — never assume one byte per character above code 127.
- ▸Unicode code point U+00EB; HTML numeric entity ë.
- ▸If 'ë' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.
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.
Frequently asked questions
What character is ASCII code 235?
ASCII code 235 is the character 'ë' (Character 235). In hexadecimal it is 0xEB, in octal 0353, and in binary 11101011.
What is 0xEB in ASCII?
Hexadecimal 0xEB equals decimal 235, which is the character 'ë' (Character 235). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xEB = 235) and look up that code point.
How do I write the character with code 235 in code?
In JavaScript use String.fromCharCode(235); in Python use chr(235); in HTML use the numeric entity ë. In a URL it is percent-encoded as %EB, and in UTF-8 it is stored as the byte sequence 0xC3 0xAB.
Is 'ë' part of standard ASCII?
No. Standard ASCII covers codes 0–127 only. 'ë' is code 235, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xEB in Latin-1 but a multi-byte sequence (0xC3 0xAB) in UTF-8.