ASCII 233
Character 233 (é)
Latin-1 Supplement
Latin small letter é. Common in Western European languages.
All encodings at a glance
| Decimal | 233 |
| Hexadecimal | 0xE9 |
| Octal | 0351 |
| Binary | 11101001 |
| HTML numeric entity | é |
| URL encoding | %E9 |
| UTF-8 bytes | 0xC3 0xA9 |
Code snippets
JavaScript
String.fromCharCode(233); // "é"
233.toString(16); // "e9"Python
chr(233) # control char é
ord(chr(233)) # 233
hex(233) # '0xe9'HTML
é <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00E9. In UTF-8 it encodes to the byte sequence 0xC3 0xA9. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xE9, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.