ASCII 225
Character 225 (á)
Latin-1 Supplement
Latin small letter á. Common in Western European languages.
All encodings at a glance
| Decimal | 225 |
| Hexadecimal | 0xE1 |
| Octal | 0341 |
| Binary | 11100001 |
| HTML numeric entity | á |
| URL encoding | %E1 |
| UTF-8 bytes | 0xC3 0xA1 |
Code snippets
JavaScript
String.fromCharCode(225); // "á"
225.toString(16); // "e1"Python
chr(225) # control char á
ord(chr(225)) # 225
hex(225) # '0xe1'HTML
á <!-- 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.