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