ASCII 224
Character 224 (à)
Latin-1 Supplement
Latin small letter à. Common in Western European languages.
Common uses & context
Decimal 224 (0xE0) is Character 224, part of the Latin-1 Supplement (128–255). Latin small letter à. Common in Western European languages. It renders as 'à' and its binary byte is 11100000.
This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'à' is the single byte 0xE0. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0xA0. 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+00E0, and in HTML you can write it as à.
All encodings at a glance
| Decimal | 224 |
| Hexadecimal | 0xE0 |
| Octal | 0340 |
| Binary | 11100000 |
| HTML numeric entity | à |
| URL encoding | %E0 |
| UTF-8 bytes | 0xC3 0xA0 |
Code snippets
JavaScript
String.fromCharCode(224); // "à"
224.toString(16); // "e0"Python
chr(224) # control char à
ord(chr(224)) # 224
hex(224) # '0xe0'HTML
à <!-- numeric entity (no named entity for this character) -->Programming notes
- ▸Single byte 0xE0 in Latin-1, but the multi-byte sequence 0xC3 0xA0 in UTF-8 — never assume one byte per character above code 127.
- ▸Unicode code point U+00E0; HTML numeric entity à.
- ▸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+00E0. In UTF-8 it encodes to the byte sequence 0xC3 0xA0. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xE0, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.
Frequently asked questions
What character is ASCII code 224?
ASCII code 224 is the character 'à' (Character 224). In hexadecimal it is 0xE0, in octal 0340, and in binary 11100000.
What is 0xE0 in ASCII?
Hexadecimal 0xE0 equals decimal 224, which is the character 'à' (Character 224). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xE0 = 224) and look up that code point.
How do I write the character with code 224 in code?
In JavaScript use String.fromCharCode(224); in Python use chr(224); in HTML use the numeric entity à. In a URL it is percent-encoded as %E0, and in UTF-8 it is stored as the byte sequence 0xC3 0xA0.
Is 'à' part of standard ASCII?
No. Standard ASCII covers codes 0–127 only. 'à' is code 224, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xE0 in Latin-1 but a multi-byte sequence (0xC3 0xA0) in UTF-8.