DevKits

ASCII 244

Character 244 (ô)

Latin-1 Supplement

Latin small letter ô. Common in Western European languages.

All encodings at a glance

Decimal244
Hexadecimal0xF4
Octal0364
Binary11110100
HTML numeric entityô
URL encoding%F4
UTF-8 bytes0xC3 0xB4

Code snippets

JavaScript

String.fromCharCode(244); // "ô"
244.toString(16); // "f4"

Python

chr(244)           # control char ô
ord(chr(244))      # 244
hex(244)           # '0xf4'

HTML

&#244;   <!-- numeric entity (no named entity for this character) -->

Unicode & UTF-8 note

In Unicode this is U+00F4. In UTF-8 it encodes to the byte sequence 0xC3 0xB4. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xF4, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes