DevKits

ASCII 234

Character 234 (ê)

Latin-1 Supplement

Latin small letter ê. Common in Western European languages.

All encodings at a glance

Decimal234
Hexadecimal0xEA
Octal0352
Binary11101010
HTML numeric entityê
URL encoding%EA
UTF-8 bytes0xC3 0xAA

Code snippets

JavaScript

String.fromCharCode(234); // "ê"
234.toString(16); // "ea"

Python

chr(234)           # control char ê
ord(chr(234))      # 234
hex(234)           # '0xea'

HTML

&#234;   <!-- numeric entity (no named entity for this character) -->

Unicode & UTF-8 note

In Unicode this is U+00EA. In UTF-8 it encodes to the byte sequence 0xC3 0xAA. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xEA, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes