DevKits

ASCII 237

Character 237 (í)

Latin-1 Supplement

Latin small letter í. Common in Western European languages.

Common uses & context

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

This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'í' is the single byte 0xED. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0xAD. 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+00ED, and in HTML you can write it as í.

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

Programming notes

  • Single byte 0xED in Latin-1, but the multi-byte sequence 0xC3 0xAD in UTF-8 — never assume one byte per character above code 127.
  • Unicode code point U+00ED; HTML numeric entity &#237;.
  • 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+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.

Frequently asked questions

What character is ASCII code 237?

ASCII code 237 is the character 'í' (Character 237). In hexadecimal it is 0xED, in octal 0355, and in binary 11101101.

What is 0xED in ASCII?

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

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

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

Is 'í' part of standard ASCII?

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

Nearby codes

Encode & convert this character