DevKits

ASCII 227

Character 227 (ã)

Latin-1 Supplement

Latin small letter ã. Common in Western European languages.

All encodings at a glance

Decimal227
Hexadecimal0xE3
Octal0343
Binary11100011
HTML numeric entityã
URL encoding%E3
UTF-8 bytes0xC3 0xA3

Code snippets

JavaScript

String.fromCharCode(227); // "ã"
227.toString(16); // "e3"

Python

chr(227)           # control char ã
ord(chr(227))      # 227
hex(227)           # '0xe3'

HTML

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

Unicode & UTF-8 note

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

Nearby codes