DevKits

ASCII 232

Character 232 (è)

Latin-1 Supplement

Latin small letter è. Common in Western European languages.

Common uses & context

Decimal 232 (0xE8) is Character 232, part of the Latin-1 Supplement (128–255). Latin small letter è. Common in Western European languages. It renders as 'è' and its binary byte is 11101000.

This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'è' is the single byte 0xE8. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0xA8. 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+00E8, and in HTML you can write it as è.

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) -->

Programming notes

  • Single byte 0xE8 in Latin-1, but the multi-byte sequence 0xC3 0xA8 in UTF-8 — never assume one byte per character above code 127.
  • Unicode code point U+00E8; HTML numeric entity &#232;.
  • 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+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.

Frequently asked questions

What character is ASCII code 232?

ASCII code 232 is the character 'è' (Character 232). In hexadecimal it is 0xE8, in octal 0350, and in binary 11101000.

What is 0xE8 in ASCII?

Hexadecimal 0xE8 equals decimal 232, which is the character 'è' (Character 232). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xE8 = 232) and look up that code point.

How do I write the character with code 232 in code?

In JavaScript use String.fromCharCode(232); in Python use chr(232); in HTML use the numeric entity &#232;. In a URL it is percent-encoded as %E8, and in UTF-8 it is stored as the byte sequence 0xC3 0xA8.

Is 'è' part of standard ASCII?

No. Standard ASCII covers codes 0–127 only. 'è' is code 232, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xE8 in Latin-1 but a multi-byte sequence (0xC3 0xA8) in UTF-8.

Nearby codes

Encode & convert this character