ASCII 239
Character 239 (ï)
Latin-1 Supplement
Latin small letter ï. Common in Western European languages.
All encodings at a glance
| Decimal | 239 |
| Hexadecimal | 0xEF |
| Octal | 0357 |
| Binary | 11101111 |
| HTML numeric entity | ï |
| URL encoding | %EF |
| UTF-8 bytes | 0xC3 0xAF |
Code snippets
JavaScript
String.fromCharCode(239); // "ï"
239.toString(16); // "ef"Python
chr(239) # control char ï
ord(chr(239)) # 239
hex(239) # '0xef'HTML
ï <!-- 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.