ASCII 205
Character 205 (Í)
Latin-1 Supplement
Latin capital letter Í. Common in Western European languages (French, German, Spanish, Portuguese).
All encodings at a glance
| Decimal | 205 |
| Hexadecimal | 0xCD |
| Octal | 0315 |
| Binary | 11001101 |
| HTML numeric entity | Í |
| URL encoding | %CD |
| UTF-8 bytes | 0xC3 0x8D |
Code snippets
JavaScript
String.fromCharCode(205); // "Í"
205.toString(16); // "cd"Python
chr(205) # control char Í
ord(chr(205)) # 205
hex(205) # '0xcd'HTML
Í <!-- 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.