ASCII 229
Character 229 (å)
Latin-1 Supplement
Latin small letter å. Common in Western European languages.
All encodings at a glance
| Decimal | 229 |
| Hexadecimal | 0xE5 |
| Octal | 0345 |
| Binary | 11100101 |
| HTML numeric entity | å |
| URL encoding | %E5 |
| UTF-8 bytes | 0xC3 0xA5 |
Code snippets
JavaScript
String.fromCharCode(229); // "å"
229.toString(16); // "e5"Python
chr(229) # control char å
ord(chr(229)) # 229
hex(229) # '0xe5'HTML
å <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00E5. In UTF-8 it encodes to the byte sequence 0xC3 0xA5. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xE5, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.