DevKits

ASCII 199

Character 199 (Ç)

Latin-1 Supplement

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

Common uses & context

Decimal 199 (0xC7) is Character 199, 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 11000111.

This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'Ç' is the single byte 0xC7. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0x87. 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+00C7, and in HTML you can write it as Ç.

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) -->

Programming notes

  • Single byte 0xC7 in Latin-1, but the multi-byte sequence 0xC3 0x87 in UTF-8 — never assume one byte per character above code 127.
  • Unicode code point U+00C7; HTML numeric entity &#199;.
  • 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+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.

Frequently asked questions

What character is ASCII code 199?

ASCII code 199 is the character 'Ç' (Character 199). In hexadecimal it is 0xC7, in octal 0307, and in binary 11000111.

What is 0xC7 in ASCII?

Hexadecimal 0xC7 equals decimal 199, which is the character 'Ç' (Character 199). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xC7 = 199) and look up that code point.

How do I write the character with code 199 in code?

In JavaScript use String.fromCharCode(199); in Python use chr(199); in HTML use the numeric entity &#199;. In a URL it is percent-encoded as %C7, and in UTF-8 it is stored as the byte sequence 0xC3 0x87.

Is 'Ç' part of standard ASCII?

No. Standard ASCII covers codes 0–127 only. 'Ç' is code 199, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xC7 in Latin-1 but a multi-byte sequence (0xC3 0x87) in UTF-8.

Nearby codes

Encode & convert this character