ASCII 227
Character 227 (ã)
Latin-1 Supplement
Latin small letter ã. Common in Western European languages.
Common uses & context
Decimal 227 (0xE3) is Character 227, part of the Latin-1 Supplement (128–255). Latin small letter ã. Common in Western European languages. It renders as 'ã' and its binary byte is 11100011.
This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'ã' is the single byte 0xE3. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0xA3. 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+00E3, and in HTML you can write it as ã.
All encodings at a glance
| Decimal | 227 |
| Hexadecimal | 0xE3 |
| Octal | 0343 |
| Binary | 11100011 |
| HTML numeric entity | ã |
| URL encoding | %E3 |
| UTF-8 bytes | 0xC3 0xA3 |
Code snippets
JavaScript
String.fromCharCode(227); // "ã"
227.toString(16); // "e3"Python
chr(227) # control char ã
ord(chr(227)) # 227
hex(227) # '0xe3'HTML
ã <!-- numeric entity (no named entity for this character) -->Programming notes
- ▸Single byte 0xE3 in Latin-1, but the multi-byte sequence 0xC3 0xA3 in UTF-8 — never assume one byte per character above code 127.
- ▸Unicode code point U+00E3; 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+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.
Frequently asked questions
What character is ASCII code 227?
ASCII code 227 is the character 'ã' (Character 227). In hexadecimal it is 0xE3, in octal 0343, and in binary 11100011.
What is 0xE3 in ASCII?
Hexadecimal 0xE3 equals decimal 227, which is the character 'ã' (Character 227). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xE3 = 227) and look up that code point.
How do I write the character with code 227 in code?
In JavaScript use String.fromCharCode(227); in Python use chr(227); in HTML use the numeric entity ã. In a URL it is percent-encoded as %E3, and in UTF-8 it is stored as the byte sequence 0xC3 0xA3.
Is 'ã' part of standard ASCII?
No. Standard ASCII covers codes 0–127 only. 'ã' is code 227, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xE3 in Latin-1 but a multi-byte sequence (0xC3 0xA3) in UTF-8.