É

ASCII Code 201

E with acute

About This Character

ASCII code 201 (0xC9) represents the E with acute character in the extended ASCII table (128–255). It is a Latin accented character commonly used in European languages such as French, German, Spanish, Portuguese, and Scandinavian languages. The extended ASCII range builds upon the original 128-character ASCII set, adding accented letters, currency symbols, typographic marks, and mathematical symbols. These characters are defined by the Windows-1252 (CP-1252) encoding, which is a superset of ISO 8859-1 (Latin-1). In modern web development, UTF-8 encoding is preferred, but understanding extended ASCII remains important for legacy system compatibility and character encoding troubleshooting.

Character Encoding

Decimal 201
Octal 311
Hexadecimal 0xC9
Binary 11001001
HTML Code É
HTML Entity É
Unicode U+00C9
Unicode Name LATIN CAPITAL LETTER E WITH ACUTE
URL Escape %C9
Quoted-Printable =C9
UTF-8 (Hex) C3 89
Category Extended — Latin Accented Letters

How to Type in Code

JavaScript
// Character literal
let char = 'É';
// Using char code
let char2 = String.fromCharCode(201);
// Unicode escape
let char3 = '\u00C9';
Python
# Character literal
char = 'É'
# Using chr()
char = chr(201)
# Using ord() to get code
code = ord('É')  # Returns 201
HTML
<!-- Direct character -->
É
<!-- HTML entity (numeric) -->
&#201;
<!-- Hex entity -->
&#xC9;
C#
// Character literal
char c = 'É';
// Using cast
char c2 = (char)201;
// To get code from char
int code = (int)'É';  // Returns 201

See Also

Copied!