ï

ASCII Code 239

i with diaeresis

About This Character

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.

Character Encoding

Decimal 239
Octal 357
Hexadecimal 0xEF
Binary 11101111
HTML Code ï
HTML Entity ï
Unicode U+00EF
Unicode Name LATIN SMALL LETTER I WITH DIAERESIS
URL Escape %EF
Quoted-Printable =EF
UTF-8 (Hex) C3 AF
Category Extended — Latin Accented Letters

How to Type in Code

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

See Also

Copied!