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