ASCII 248
Character 248 (ø)
Latin-1 Supplement
Latin small letter with diacritic. Used in Northern European alphabets.
All encodings at a glance
| Decimal | 248 |
| Hexadecimal | 0xF8 |
| Octal | 0370 |
| Binary | 11111000 |
| HTML numeric entity | ø |
| URL encoding | %F8 |
| UTF-8 bytes | 0xC3 0xB8 |
Code snippets
JavaScript
String.fromCharCode(248); // "ø"
248.toString(16); // "f8"Python
chr(248) # control char ø
ord(chr(248)) # 248
hex(248) # '0xf8'HTML
ø <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00F8. In UTF-8 it encodes to the byte sequence 0xC3 0xB8. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xF8, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.