DevKits

ASCII 198

Character 198 (Æ)

Latin-1 Supplement

Latin capital letter Æ. Common in Western European languages (French, German, Spanish, Portuguese).

All encodings at a glance

Decimal198
Hexadecimal0xC6
Octal0306
Binary11000110
HTML numeric entityÆ
URL encoding%C6
UTF-8 bytes0xC3 0x86

Code snippets

JavaScript

String.fromCharCode(198); // "Æ"
198.toString(16); // "c6"

Python

chr(198)           # control char Æ
ord(chr(198))      # 198
hex(198)           # '0xc6'

HTML

&#198;   <!-- 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.

Nearby codes