DevKits

ASCII 204

Character 204 (Ì)

Latin-1 Supplement

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

All encodings at a glance

Decimal204
Hexadecimal0xCC
Octal0314
Binary11001100
HTML numeric entityÌ
URL encoding%CC
UTF-8 bytes0xC3 0x8C

Code snippets

JavaScript

String.fromCharCode(204); // "Ì"
204.toString(16); // "cc"

Python

chr(204)           # control char Ì
ord(chr(204))      # 204
hex(204)           # '0xcc'

HTML

&#204;   <!-- 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.

Nearby codes