ASCII 200
Character 200 (È)
Latin-1 Supplement
Latin capital letter È. Common in Western European languages (French, German, Spanish, Portuguese).
Common uses & context
Decimal 200 (0xC8) is Character 200, part of the Latin-1 Supplement (128–255). Latin capital letter È. Common in Western European languages (French, German, Spanish, Portuguese). It renders as 'È' and its binary byte is 11001000.
This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'È' is the single byte 0xC8. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0x88. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00C8, and in HTML you can write it as È.
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) -->Programming notes
- ▸Single byte 0xC8 in Latin-1, but the multi-byte sequence 0xC3 0x88 in UTF-8 — never assume one byte per character above code 127.
- ▸Unicode code point U+00C8; HTML numeric entity È.
- ▸If 'È' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.
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.
Frequently asked questions
What character is ASCII code 200?
ASCII code 200 is the character 'È' (Character 200). In hexadecimal it is 0xC8, in octal 0310, and in binary 11001000.
What is 0xC8 in ASCII?
Hexadecimal 0xC8 equals decimal 200, which is the character 'È' (Character 200). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xC8 = 200) and look up that code point.
How do I write the character with code 200 in code?
In JavaScript use String.fromCharCode(200); in Python use chr(200); in HTML use the numeric entity È. In a URL it is percent-encoded as %C8, and in UTF-8 it is stored as the byte sequence 0xC3 0x88.
Is 'È' part of standard ASCII?
No. Standard ASCII covers codes 0–127 only. 'È' is code 200, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xC8 in Latin-1 but a multi-byte sequence (0xC3 0x88) in UTF-8.