ASCII 234
Character 234 (ê)
Latin-1 Supplement
Latin small letter ê. Common in Western European languages.
Common uses & context
Decimal 234 (0xEA) is Character 234, part of the Latin-1 Supplement (128–255). Latin small letter ê. Common in Western European languages. It renders as 'ê' and its binary byte is 11101010.
This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'ê' is the single byte 0xEA. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0xAA. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00EA, and in HTML you can write it as ê.
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) -->Programming notes
- ▸Single byte 0xEA in Latin-1, but the multi-byte sequence 0xC3 0xAA in UTF-8 — never assume one byte per character above code 127.
- ▸Unicode code point U+00EA; HTML numeric entity ê.
- ▸If 'ê' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.
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.
Frequently asked questions
What character is ASCII code 234?
ASCII code 234 is the character 'ê' (Character 234). In hexadecimal it is 0xEA, in octal 0352, and in binary 11101010.
What is 0xEA in ASCII?
Hexadecimal 0xEA equals decimal 234, which is the character 'ê' (Character 234). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xEA = 234) and look up that code point.
How do I write the character with code 234 in code?
In JavaScript use String.fromCharCode(234); in Python use chr(234); in HTML use the numeric entity ê. In a URL it is percent-encoded as %EA, and in UTF-8 it is stored as the byte sequence 0xC3 0xAA.
Is 'ê' part of standard ASCII?
No. Standard ASCII covers codes 0–127 only. 'ê' is code 234, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xEA in Latin-1 but a multi-byte sequence (0xC3 0xAA) in UTF-8.