ASCII 204
Character 204 (Ì)
Latin-1 Supplement
Latin capital letter Ì. Common in Western European languages (French, German, Spanish, Portuguese).
All encodings at a glance
| Decimal | 204 |
| Hexadecimal | 0xCC |
| Octal | 0314 |
| Binary | 11001100 |
| HTML numeric entity | Ì |
| URL encoding | %CC |
| UTF-8 bytes | 0xC3 0x8C |
Code snippets
JavaScript
String.fromCharCode(204); // "Ì"
204.toString(16); // "cc"Python
chr(204) # control char Ì
ord(chr(204)) # 204
hex(204) # '0xcc'HTML
Ì <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00CC. In UTF-8 it encodes to the byte sequence 0xC3 0x8C. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xCC, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.