ASCII 237
Character 237 (í)
Latin-1 Supplement
Latin small letter í. Common in Western European languages.
All encodings at a glance
| Decimal | 237 |
| Hexadecimal | 0xED |
| Octal | 0355 |
| Binary | 11101101 |
| HTML numeric entity | í |
| URL encoding | %ED |
| UTF-8 bytes | 0xC3 0xAD |
Code snippets
JavaScript
String.fromCharCode(237); // "í"
237.toString(16); // "ed"Python
chr(237) # control char í
ord(chr(237)) # 237
hex(237) # '0xed'HTML
í <!-- 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.