ASCII 234
Character 234 (ê)
Latin-1 Supplement
Latin small letter ê. Common in Western European languages.
All encodings at a glance
| Decimal | 234 |
| Hexadecimal | 0xEA |
| Octal | 0352 |
| Binary | 11101010 |
| HTML numeric entity | ê |
| URL encoding | %EA |
| UTF-8 bytes | 0xC3 0xAA |
Code snippets
JavaScript
String.fromCharCode(234); // "ê"
234.toString(16); // "ea"Python
chr(234) # control char ê
ord(chr(234)) # 234
hex(234) # '0xea'HTML
ê <!-- 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.