ASCII 232
Character 232 (è)
Latin-1 Supplement
Latin small letter è. Common in Western European languages.
All encodings at a glance
| Decimal | 232 |
| Hexadecimal | 0xE8 |
| Octal | 0350 |
| Binary | 11101000 |
| HTML numeric entity | è |
| URL encoding | %E8 |
| UTF-8 bytes | 0xC3 0xA8 |
Code snippets
JavaScript
String.fromCharCode(232); // "è"
232.toString(16); // "e8"Python
chr(232) # control char è
ord(chr(232)) # 232
hex(232) # '0xe8'HTML
è <!-- 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.