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