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