DevKits

ASCII 232

Character 232 (è)

Latin-1 Supplement

Latin small letter è. Common in Western European languages.

All encodings at a glance

Decimal232
Hexadecimal0xE8
Octal0350
Binary11101000
HTML numeric entityè
URL encoding%E8
UTF-8 bytes0xC3 0xA8

Code snippets

JavaScript

String.fromCharCode(232); // "è"
232.toString(16); // "e8"

Python

chr(232)           # control char è
ord(chr(232))      # 232
hex(232)           # '0xe8'

HTML

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

Unicode & UTF-8 note

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

Nearby codes