ASCII 192
Character 192 (À)
Latin-1 Supplement
Latin capital letter À. Common in Western European languages (French, German, Spanish, Portuguese).
All encodings at a glance
| Decimal | 192 |
| Hexadecimal | 0xC0 |
| Octal | 0300 |
| Binary | 11000000 |
| HTML numeric entity | À |
| URL encoding | %C0 |
| UTF-8 bytes | 0xC3 0x80 |
Code snippets
JavaScript
String.fromCharCode(192); // "À"
192.toString(16); // "c0"Python
chr(192) # control char À
ord(chr(192)) # 192
hex(192) # '0xc0'HTML
À <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00C0. In UTF-8 it encodes to the byte sequence 0xC3 0x80. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xC0, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.