ASCII Code 246 · Unicode U+00F6 · Hex 0xF6
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.
| ASCII Code | 246 |
| Hexadecimal | 0xF6 |
| Octal | 366 |
| Binary | 11110110 |
| Unicode | U+00F6 |
| Unicode Name | LATIN SMALL LETTER O WITH DIAERESIS |
| HTML Numeric | ö |
| HTML Entity | ö |
| URL Escape | %F6 |
| UTF-8 (Hex) | C3 B6 |
| Quoted-Printable | =F6 |
// Character literal
let char = 'ö';
// Using char code
let char2 = String.fromCharCode(246);
// Unicode escape
let char3 = '\u00F6'; # Character literal
char = 'ö'
# Using chr()
char = chr(246)
# Using ord() to get code
code = ord('ö') # Returns 246 <!-- Direct character -->
ö
<!-- HTML entity (numeric) -->
ö
<!-- Hex entity -->
ö // Character literal
char c = 'ö';
// Using cast
char c2 = (char)246;
// To get code from char
int code = (int)'ö'; // Returns 246