DevKits

ASCII 229

Character 229 (å)

Latin-1 Supplement

Latin small letter å. Common in Western European languages.

All encodings at a glance

Decimal229
Hexadecimal0xE5
Octal0345
Binary11100101
HTML numeric entityå
URL encoding%E5
UTF-8 bytes0xC3 0xA5

Code snippets

JavaScript

String.fromCharCode(229); // "å"
229.toString(16); // "e5"

Python

chr(229)           # control char å
ord(chr(229))      # 229
hex(229)           # '0xe5'

HTML

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

Nearby codes