DevKits

ASCII 201

Character 201 (É)

Latin-1 Supplement

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

All encodings at a glance

Decimal201
Hexadecimal0xC9
Octal0311
Binary11001001
HTML numeric entityÉ
URL encoding%C9
UTF-8 bytes0xC3 0x89

Code snippets

JavaScript

String.fromCharCode(201); // "É"
201.toString(16); // "c9"

Python

chr(201)           # control char É
ord(chr(201))      # 201
hex(201)           # '0xc9'

HTML

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

Nearby codes