DevKits

ASCII 233

Character 233 (é)

Latin-1 Supplement

Latin small letter é. Common in Western European languages.

All encodings at a glance

Decimal233
Hexadecimal0xE9
Octal0351
Binary11101001
HTML numeric entityé
URL encoding%E9
UTF-8 bytes0xC3 0xA9

Code snippets

JavaScript

String.fromCharCode(233); // "é"
233.toString(16); // "e9"

Python

chr(233)           # control char é
ord(chr(233))      # 233
hex(233)           # '0xe9'

HTML

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

Nearby codes