DevKits

ASCII 226

Character 226 (â)

Latin-1 Supplement

Latin small letter â. Common in Western European languages.

All encodings at a glance

Decimal226
Hexadecimal0xE2
Octal0342
Binary11100010
HTML numeric entityâ
URL encoding%E2
UTF-8 bytes0xC3 0xA2

Code snippets

JavaScript

String.fromCharCode(226); // "â"
226.toString(16); // "e2"

Python

chr(226)           # control char â
ord(chr(226))      # 226
hex(226)           # '0xe2'

HTML

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

Unicode & UTF-8 note

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

Nearby codes