à

ASCII Character: a with grave

ASCII Code 224 · Unicode U+00E0 · Hex 0xE0

About the a with grave Character

ASCII code 224 (0xE0) represents the a with grave character in the extended ASCII table (128–255). It is a Latin accented character commonly used in European languages such as French, German, Spanish, Portuguese, and Scandinavian languages. The extended ASCII range builds upon the original 128-character ASCII set, adding accented letters, currency symbols, typographic marks, and mathematical symbols. These characters are defined by the Windows-1252 (CP-1252) encoding, which is a superset of ISO 8859-1 (Latin-1). In modern web development, UTF-8 encoding is preferred, but understanding extended ASCII remains important for legacy system compatibility and character encoding troubleshooting.

Encoding Details

ASCII Code 224
Hexadecimal 0xE0
Octal 340
Binary 11100000
Unicode U+00E0
Unicode Name LATIN SMALL LETTER A WITH GRAVE
HTML Numeric à
HTML Entity à
URL Escape %E0
UTF-8 (Hex) C3 A0
Quoted-Printable =E0

Source Code Examples

JavaScript
// Character literal
let char = 'à';
// Using char code
let char2 = String.fromCharCode(224);
// Unicode escape
let char3 = '\u00E0';
Python
# Character literal
char = 'à'
# Using chr()
char = chr(224)
# Using ord() to get code
code = ord('à')  # Returns 224
HTML
<!-- Direct character -->
à
<!-- HTML entity (numeric) -->
&#224;
<!-- Hex entity -->
&#xE0;
C#
// Character literal
char c = 'à';
// Using cast
char c2 = (char)224;
// To get code from char
int code = (int)'à';  // Returns 224

Navigate

Copied!