ASCII 244
Character 244 (ô)
Latin-1 Supplement
Latin small letter ô. Common in Western European languages.
All encodings at a glance
| Decimal | 244 |
| Hexadecimal | 0xF4 |
| Octal | 0364 |
| Binary | 11110100 |
| HTML numeric entity | ô |
| URL encoding | %F4 |
| UTF-8 bytes | 0xC3 0xB4 |
Code snippets
JavaScript
String.fromCharCode(244); // "ô"
244.toString(16); // "f4"Python
chr(244) # control char ô
ord(chr(244)) # 244
hex(244) # '0xf4'HTML
ô <!-- 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.