å

ASCII Character: a with ring above

ASCII Code 229 · Unicode U+00E5 · Hex 0xE5

About the a with ring above Character

ASCII code 229 (0xE5) represents the a with ring above 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 229
Hexadecimal 0xE5
Octal 345
Binary 11100101
Unicode U+00E5
Unicode Name LATIN SMALL LETTER A WITH RING ABOVE
HTML Numeric å
HTML Entity å
URL Escape %E5
UTF-8 (Hex) C3 A5
Quoted-Printable =E5

Source Code Examples

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

Navigate

Copied!