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