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