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