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