ASCII 224
Character 224 (à)
Latin-1 Supplement
Latin small letter à. Common in Western European languages.
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) -->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.