ASCII 198
Character 198 (Æ)
Latin-1 Supplement
Latin capital letter Æ. Common in Western European languages (French, German, Spanish, Portuguese).
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) -->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.