DevKits

ASCII 238

Character 238 (î)

Latin-1 Supplement

Latin small letter î. Common in Western European languages.

All encodings at a glance

Decimal238
Hexadecimal0xEE
Octal0356
Binary11101110
HTML numeric entityî
URL encoding%EE
UTF-8 bytes0xC3 0xAE

Code snippets

JavaScript

String.fromCharCode(238); // "î"
238.toString(16); // "ee"

Python

chr(238)           # control char î
ord(chr(238))      # 238
hex(238)           # '0xee'

HTML

&#238;   <!-- 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.

Nearby codes