DevKits

ASCII 202

Character 202 (Ê)

Latin-1 Supplement

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

All encodings at a glance

Decimal202
Hexadecimal0xCA
Octal0312
Binary11001010
HTML numeric entityÊ
URL encoding%CA
UTF-8 bytes0xC3 0x8A

Code snippets

JavaScript

String.fromCharCode(202); // "Ê"
202.toString(16); // "ca"

Python

chr(202)           # control char Ê
ord(chr(202))      # 202
hex(202)           # '0xca'

HTML

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

Nearby codes