DevKits

ASCII 236

Character 236 (ì)

Latin-1 Supplement

Latin small letter ì. Common in Western European languages.

All encodings at a glance

Decimal236
Hexadecimal0xEC
Octal0354
Binary11101100
HTML numeric entityì
URL encoding%EC
UTF-8 bytes0xC3 0xAC

Code snippets

JavaScript

String.fromCharCode(236); // "ì"
236.toString(16); // "ec"

Python

chr(236)           # control char ì
ord(chr(236))      # 236
hex(236)           # '0xec'

HTML

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

Nearby codes