DevKits

ASCII 236

Character 236 (ì)

Latin-1 Supplement

Latin small letter ì. Common in Western European languages.

Common uses & context

Decimal 236 (0xEC) is Character 236, part of the Latin-1 Supplement (128–255). Latin small letter ì. Common in Western European languages. It renders as 'ì' and its binary byte is 11101100.

This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'ì' is the single byte 0xEC. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0xAC. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00EC, and in HTML you can write it as ì.

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) -->

Programming notes

  • Single byte 0xEC in Latin-1, but the multi-byte sequence 0xC3 0xAC in UTF-8 — never assume one byte per character above code 127.
  • Unicode code point U+00EC; HTML numeric entity &#236;.
  • If 'ì' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.

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.

Frequently asked questions

What character is ASCII code 236?

ASCII code 236 is the character 'ì' (Character 236). In hexadecimal it is 0xEC, in octal 0354, and in binary 11101100.

What is 0xEC in ASCII?

Hexadecimal 0xEC equals decimal 236, which is the character 'ì' (Character 236). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xEC = 236) and look up that code point.

How do I write the character with code 236 in code?

In JavaScript use String.fromCharCode(236); in Python use chr(236); in HTML use the numeric entity &#236;. In a URL it is percent-encoded as %EC, and in UTF-8 it is stored as the byte sequence 0xC3 0xAC.

Is 'ì' part of standard ASCII?

No. Standard ASCII covers codes 0–127 only. 'ì' is code 236, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xEC in Latin-1 but a multi-byte sequence (0xC3 0xAC) in UTF-8.

Nearby codes

Encode & convert this character