DevKits

ASCII 224

Character 224 (à)

Latin-1 Supplement

Latin small letter à. Common in Western European languages.

All encodings at a glance

Decimal224
Hexadecimal0xE0
Octal0340
Binary11100000
HTML numeric entityà
URL encoding%E0
UTF-8 bytes0xC3 0xA0

Code snippets

JavaScript

String.fromCharCode(224); // "à"
224.toString(16); // "e0"

Python

chr(224)           # control char à
ord(chr(224))      # 224
hex(224)           # '0xe0'

HTML

&#224;   <!-- 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.

Nearby codes