ASCII Code 238 · Unicode U+00EE · Hex 0xEE
ASCII code 238 (0xEE) represents the i with circumflex 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 | 238 |
| Hexadecimal | 0xEE |
| Octal | 356 |
| Binary | 11101110 |
| Unicode | U+00EE |
| Unicode Name | LATIN SMALL LETTER I WITH CIRCUMFLEX |
| HTML Numeric | î |
| HTML Entity | î |
| URL Escape | %EE |
| UTF-8 (Hex) | C3 AE |
| Quoted-Printable | =EE |
// Character literal
let char = 'î';
// Using char code
let char2 = String.fromCharCode(238);
// Unicode escape
let char3 = '\u00EE'; # Character literal
char = 'î'
# Using chr()
char = chr(238)
# Using ord() to get code
code = ord('î') # Returns 238 <!-- Direct character -->
î
<!-- HTML entity (numeric) -->
î
<!-- Hex entity -->
î // Character literal
char c = 'î';
// Using cast
char c2 = (char)238;
// To get code from char
int code = (int)'î'; // Returns 238