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