DevKits

ASCII 230

Character 230 (æ)

Latin-1 Supplement

Latin small letter æ. Common in Western European languages.

All encodings at a glance

Decimal230
Hexadecimal0xE6
Octal0346
Binary11100110
HTML numeric entityæ
URL encoding%E6
UTF-8 bytes0xC3 0xA6

Code snippets

JavaScript

String.fromCharCode(230); // "æ"
230.toString(16); // "e6"

Python

chr(230)           # control char æ
ord(chr(230))      # 230
hex(230)           # '0xe6'

HTML

&#230;   <!-- 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.

Nearby codes