ö

ASCII Code 246

o with diaeresis

About This Character

ASCII code 246 (0xF6) represents the o with diaeresis character in the extended ASCII table (128–255). It is a Latin accented character commonly used in European languages such as French, German, Spanish, Portuguese, and Scandinavian languages. The extended ASCII range builds upon the original 128-character ASCII set, adding accented letters, currency symbols, typographic marks, and mathematical symbols. These characters are defined by the Windows-1252 (CP-1252) encoding, which is a superset of ISO 8859-1 (Latin-1). In modern web development, UTF-8 encoding is preferred, but understanding extended ASCII remains important for legacy system compatibility and character encoding troubleshooting.

Character Encoding

Decimal 246
Octal 366
Hexadecimal 0xF6
Binary 11110110
HTML Code ö
HTML Entity ö
Unicode U+00F6
Unicode Name LATIN SMALL LETTER O WITH DIAERESIS
URL Escape %F6
Quoted-Printable =F6
UTF-8 (Hex) C3 B6
Category Extended — Latin Accented Letters

How to Type in Code

JavaScript
// Character literal
let char = 'ö';
// Using char code
let char2 = String.fromCharCode(246);
// Unicode escape
let char3 = '\u00F6';
Python
# Character literal
char = 'ö'
# Using chr()
char = chr(246)
# Using ord() to get code
code = ord('ö')  # Returns 246
HTML
<!-- Direct character -->
ö
<!-- HTML entity (numeric) -->
&#246;
<!-- Hex entity -->
&#xF6;
C#
// Character literal
char c = 'ö';
// Using cast
char c2 = (char)246;
// To get code from char
int code = (int)'ö';  // Returns 246

See Also

Copied!