DevKits

ASCII 246

Character 246 (ö)

Latin-1 Supplement

Latin small letter ö. Common in Western European languages.

All encodings at a glance

Decimal246
Hexadecimal0xF6
Octal0366
Binary11110110
HTML numeric entityö
URL encoding%F6
UTF-8 bytes0xC3 0xB6

Code snippets

JavaScript

String.fromCharCode(246); // "ö"
246.toString(16); // "f6"

Python

chr(246)           # control char ö
ord(chr(246))      # 246
hex(246)           # '0xf6'

HTML

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

Nearby codes