Ê

ASCII Code 202

E with circumflex

About This Character

ASCII code 202 (0xCA) represents the E with circumflex 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 202
Octal 312
Hexadecimal 0xCA
Binary 11001010
HTML Code Ê
HTML Entity Ê
Unicode U+00CA
Unicode Name LATIN CAPITAL LETTER E WITH CIRCUMFLEX
URL Escape %CA
Quoted-Printable =CA
UTF-8 (Hex) C3 8A
Category Extended — Latin Accented Letters

How to Type in Code

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

See Also

Copied!