Æ

ASCII Code 198

Latin capital letter AE

About This Character

ASCII code 198 (0xC6) represents the Latin capital letter AE 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.

Character Encoding

Decimal 198
Octal 306
Hexadecimal 0xC6
Binary 11000110
HTML Code Æ
HTML Entity Æ
Unicode U+00C6
Unicode Name LATIN CAPITAL LETTER AE
URL Escape %C6
Quoted-Printable =C6
UTF-8 (Hex) C3 86
Category Extended — Latin Accented Letters

How to Type in Code

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

See Also

Copied!