DevKits

ASCII 237

Character 237 (í)

Latin-1 Supplement

Latin small letter í. Common in Western European languages.

All encodings at a glance

Decimal237
Hexadecimal0xED
Octal0355
Binary11101101
HTML numeric entityí
URL encoding%ED
UTF-8 bytes0xC3 0xAD

Code snippets

JavaScript

String.fromCharCode(237); // "í"
237.toString(16); // "ed"

Python

chr(237)           # control char í
ord(chr(237))      # 237
hex(237)           # '0xed'

HTML

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

Unicode & UTF-8 note

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

Nearby codes