ASCII Code 239 · Unicode U+00EF · Hex 0xEF
ASCII code 239 (0xEF) represents the i 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 | 239 |
| Hexadecimal | 0xEF |
| Octal | 357 |
| Binary | 11101111 |
| Unicode | U+00EF |
| Unicode Name | LATIN SMALL LETTER I WITH DIAERESIS |
| HTML Numeric | ï |
| HTML Entity | ï |
| URL Escape | %EF |
| UTF-8 (Hex) | C3 AF |
| Quoted-Printable | =EF |
// Character literal
let char = 'ï';
// Using char code
let char2 = String.fromCharCode(239);
// Unicode escape
let char3 = '\u00EF'; # Character literal
char = 'ï'
# Using chr()
char = chr(239)
# Using ord() to get code
code = ord('ï') # Returns 239 <!-- Direct character -->
ï
<!-- HTML entity (numeric) -->
ï
<!-- Hex entity -->
ï // Character literal
char c = 'ï';
// Using cast
char c2 = (char)239;
// To get code from char
int code = (int)'ï'; // Returns 239