DevKits

ASCII 205

Character 205 (Í)

Latin-1 Supplement

Latin capital letter Í. Common in Western European languages (French, German, Spanish, Portuguese).

All encodings at a glance

Decimal205
Hexadecimal0xCD
Octal0315
Binary11001101
HTML numeric entityÍ
URL encoding%CD
UTF-8 bytes0xC3 0x8D

Code snippets

JavaScript

String.fromCharCode(205); // "Í"
205.toString(16); // "cd"

Python

chr(205)           # control char Í
ord(chr(205))      # 205
hex(205)           # '0xcd'

HTML

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

Unicode & UTF-8 note

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

Nearby codes