DevKits

ASCII 239

Character 239 (ï)

Latin-1 Supplement

Latin small letter ï. Common in Western European languages.

All encodings at a glance

Decimal239
Hexadecimal0xEF
Octal0357
Binary11101111
HTML numeric entityï
URL encoding%EF
UTF-8 bytes0xC3 0xAF

Code snippets

JavaScript

String.fromCharCode(239); // "ï"
239.toString(16); // "ef"

Python

chr(239)           # control char ï
ord(chr(239))      # 239
hex(239)           # '0xef'

HTML

&#239;   <!-- numeric entity (no named entity for this character) -->

Unicode & UTF-8 note

In Unicode this is U+00EF. In UTF-8 it encodes to the byte sequence 0xC3 0xAF. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xEF, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes