DevKits

ASCII 225

Character 225 (á)

Latin-1 Supplement

Latin small letter á. Common in Western European languages.

All encodings at a glance

Decimal225
Hexadecimal0xE1
Octal0341
Binary11100001
HTML numeric entityá
URL encoding%E1
UTF-8 bytes0xC3 0xA1

Code snippets

JavaScript

String.fromCharCode(225); // "á"
225.toString(16); // "e1"

Python

chr(225)           # control char á
ord(chr(225))      # 225
hex(225)           # '0xe1'

HTML

&#225;   <!-- numeric entity (no named entity for this character) -->

Unicode & UTF-8 note

In Unicode this is U+00E1. In UTF-8 it encodes to the byte sequence 0xC3 0xA1. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xE1, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes