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