ASCII 246
Character 246 (ö)
Latin-1 Supplement
Latin small letter ö. Common in Western European languages.
All encodings at a glance
| Decimal | 246 |
| Hexadecimal | 0xF6 |
| Octal | 0366 |
| Binary | 11110110 |
| HTML numeric entity | ö |
| URL encoding | %F6 |
| UTF-8 bytes | 0xC3 0xB6 |
Code snippets
JavaScript
String.fromCharCode(246); // "ö"
246.toString(16); // "f6"Python
chr(246) # control char ö
ord(chr(246)) # 246
hex(246) # '0xf6'HTML
ö <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00F6. In UTF-8 it encodes to the byte sequence 0xC3 0xB6. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xF6, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.