DevKits

ASCII 199

Character 199 (Ç)

Latin-1 Supplement

Latin capital letter Ç. Common in Western European languages (French, German, Spanish, Portuguese).

All encodings at a glance

Decimal199
Hexadecimal0xC7
Octal0307
Binary11000111
HTML numeric entityÇ
URL encoding%C7
UTF-8 bytes0xC3 0x87

Code snippets

JavaScript

String.fromCharCode(199); // "Ç"
199.toString(16); // "c7"

Python

chr(199)           # control char Ç
ord(chr(199))      # 199
hex(199)           # '0xc7'

HTML

&#199;   <!-- 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.

Nearby codes