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