ASCII 193
Character 193 (Á)
Latin-1 Supplement
Latin capital letter Á. Common in Western European languages (French, German, Spanish, Portuguese).
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) -->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.