ASCII 238
Character 238 (î)
Latin-1 Supplement
Latin small letter î. Common in Western European languages.
All encodings at a glance
| Decimal | 238 |
| Hexadecimal | 0xEE |
| Octal | 0356 |
| Binary | 11101110 |
| HTML numeric entity | î |
| URL encoding | %EE |
| UTF-8 bytes | 0xC3 0xAE |
Code snippets
JavaScript
String.fromCharCode(238); // "î"
238.toString(16); // "ee"Python
chr(238) # control char î
ord(chr(238)) # 238
hex(238) # '0xee'HTML
î <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00EE. In UTF-8 it encodes to the byte sequence 0xC3 0xAE. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xEE, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.