ASCII 198
Character 198 (Æ)
Latin-1 Supplement
Latin capital letter Æ. Common in Western European languages (French, German, Spanish, Portuguese).
Common uses & context
Decimal 198 (0xC6) is Character 198, part of the Latin-1 Supplement (128–255). Latin capital letter Æ. Common in Western European languages (French, German, Spanish, Portuguese). It renders as 'Æ' and its binary byte is 11000110.
This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'Æ' is the single byte 0xC6. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0x86. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00C6, and in HTML you can write it as Æ.
All encodings at a glance
| Decimal | 198 |
| Hexadecimal | 0xC6 |
| Octal | 0306 |
| Binary | 11000110 |
| HTML numeric entity | Æ |
| URL encoding | %C6 |
| UTF-8 bytes | 0xC3 0x86 |
Code snippets
JavaScript
String.fromCharCode(198); // "Æ"
198.toString(16); // "c6"Python
chr(198) # control char Æ
ord(chr(198)) # 198
hex(198) # '0xc6'HTML
Æ <!-- numeric entity (no named entity for this character) -->Programming notes
- ▸Single byte 0xC6 in Latin-1, but the multi-byte sequence 0xC3 0x86 in UTF-8 — never assume one byte per character above code 127.
- ▸Unicode code point U+00C6; HTML numeric entity Æ.
- ▸If 'Æ' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.
Unicode & UTF-8 note
In Unicode this is U+00C6. In UTF-8 it encodes to the byte sequence 0xC3 0x86. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xC6, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.
Frequently asked questions
What character is ASCII code 198?
ASCII code 198 is the character 'Æ' (Character 198). In hexadecimal it is 0xC6, in octal 0306, and in binary 11000110.
What is 0xC6 in ASCII?
Hexadecimal 0xC6 equals decimal 198, which is the character 'Æ' (Character 198). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xC6 = 198) and look up that code point.
How do I write the character with code 198 in code?
In JavaScript use String.fromCharCode(198); in Python use chr(198); in HTML use the numeric entity Æ. In a URL it is percent-encoded as %C6, and in UTF-8 it is stored as the byte sequence 0xC3 0x86.
Is 'Æ' part of standard ASCII?
No. Standard ASCII covers codes 0–127 only. 'Æ' is code 198, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xC6 in Latin-1 but a multi-byte sequence (0xC3 0x86) in UTF-8.