ASCII 193
Character 193 (Á)
Latin-1 Supplement
Latin capital letter Á. Common in Western European languages (French, German, Spanish, Portuguese).
Common uses & context
Decimal 193 (0xC1) is Character 193, part of the Latin-1 Supplement (128–255). Latin capital letter Á. Common in Western European languages (French, German, Spanish, Portuguese). It renders as 'Á' and its binary byte is 11000001.
This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'Á' is the single byte 0xC1. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0x81. 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+00C1, and in HTML you can write it as Á.
All encodings at a glance
| Decimal | 193 |
| Hexadecimal | 0xC1 |
| Octal | 0301 |
| Binary | 11000001 |
| HTML numeric entity | Á |
| URL encoding | %C1 |
| UTF-8 bytes | 0xC3 0x81 |
Code snippets
JavaScript
String.fromCharCode(193); // "Á"
193.toString(16); // "c1"Python
chr(193) # control char Á
ord(chr(193)) # 193
hex(193) # '0xc1'HTML
Á <!-- numeric entity (no named entity for this character) -->Programming notes
- ▸Single byte 0xC1 in Latin-1, but the multi-byte sequence 0xC3 0x81 in UTF-8 — never assume one byte per character above code 127.
- ▸Unicode code point U+00C1; 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+00C1. In UTF-8 it encodes to the byte sequence 0xC3 0x81. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xC1, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.
Frequently asked questions
What character is ASCII code 193?
ASCII code 193 is the character 'Á' (Character 193). In hexadecimal it is 0xC1, in octal 0301, and in binary 11000001.
What is 0xC1 in ASCII?
Hexadecimal 0xC1 equals decimal 193, which is the character 'Á' (Character 193). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xC1 = 193) and look up that code point.
How do I write the character with code 193 in code?
In JavaScript use String.fromCharCode(193); in Python use chr(193); in HTML use the numeric entity Á. In a URL it is percent-encoded as %C1, and in UTF-8 it is stored as the byte sequence 0xC3 0x81.
Is 'Á' part of standard ASCII?
No. Standard ASCII covers codes 0–127 only. 'Á' is code 193, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xC1 in Latin-1 but a multi-byte sequence (0xC3 0x81) in UTF-8.