Back
Asciify Logo
Asciify

Latin Capital Letter C

Few uppercase letters pull as much double duty as 'C', which serves simultaneously as the highest single-digit hex letter-digit (representing 12), the namesake of one of computing's most influential programming languages, and a common abbreviation in science and everyday life (Celsius, coulomb, copyright). It sits at ASCII code point 67 (0x43), exactly 32 below its lowercase counterpart 'c' at 99 (0x63), maintaining the single-bit case offset (bit 5) shared by all ASCII A–Z / a–z pairs. In typical English corpora, uppercase 'C' ranks among the more visible consonant capitals thanks to frequent sentence-initial words like 'Can', 'Could', and 'Come'.

Latin Letter

Technical Details

Code Example

</>
// Hex digit to integer conversion
char hex = 'C';
int val = (hex >= 'A') ? (hex - 'A' + 10) : (hex - '0');
// val == 12

Common Usage

  • Hexadecimal digit: Uppercase 'C' represents 12 in hex and appears in ubiquitous byte values — 0xCC is the INT3 debug breakpoint opcode on x86 processors, and CSS shorthand colors like #CCC produce a familiar light gray. C-family printf-style formatting with %X outputs uppercase hex digits including 'C'.

  • Regex and escape-sequence role: In many regex engines, \C matches a single raw byte regardless of encoding — though support is engine-dependent (Perl, Go) and its use is generally discouraged in Unicode-aware contexts. Separately, in C-style strings the lowercase \c has no standard meaning, but some tools use \cX notation for control characters, where the case of the letter following \c can matter depending on the implementation.

  • Linguistic dual phoneme: In English, 'C' maps to two distinct phonemes — a hard /k/ before 'a', 'o', 'u' (Cat, Core, Cup) and a soft /s/ before 'e', 'i', 'y' (Cent, City, Cycle). This split, inherited from Latin via French, makes 'C' one of the most context-dependent consonants in English spelling and a persistent source of difficulty in text-to-speech systems.

  • Diacritical variants: Uppercase Ç (cedilla) is a separate functional letter in Turkish, where it represents /tʃ/, and appears as an accented variant in French, Portuguese, and Catalan. Ć (acute) is a distinct letter in Polish, Croatian, and Serbian Latin, while Č (caron) serves the same role in Czech, Slovak, Slovenian, and the Baltic languages — all sorted independently of plain 'C' in their respective alphabets.

  • Hexadecimal digit: Uppercase 'C' represents 12 in hex and appears in ubiquitous byte values — 0xCC is the INT3 debug breakpoint opcode on x86 processors, and CSS shorthand colors like #CCC produce a familiar light gray. C-family printf-style formatting with %X outputs uppercase hex digits including 'C'.

  • Regex and escape-sequence role: In many regex engines, \C matches a single raw byte regardless of encoding — though support is engine-dependent (Perl, Go) and its use is generally discouraged in Unicode-aware contexts. Separately, in C-style strings the lowercase \c has no standard meaning, but some tools use \cX notation for control characters, where the case of the letter following \c can matter depending on the implementation.

  • Linguistic dual phoneme: In English, 'C' maps to two distinct phonemes — a hard /k/ before 'a', 'o', 'u' (Cat, Core, Cup) and a soft /s/ before 'e', 'i', 'y' (Cent, City, Cycle). This split, inherited from Latin via French, makes 'C' one of the most context-dependent consonants in English spelling and a persistent source of difficulty in text-to-speech systems.

  • Diacritical variants: Uppercase Ç (cedilla) is a separate functional letter in Turkish, where it represents /tʃ/, and appears as an accented variant in French, Portuguese, and Catalan. Ć (acute) is a distinct letter in Polish, Croatian, and Serbian Latin, while Č (caron) serves the same role in Czech, Slovak, Slovenian, and the Baltic languages — all sorted independently of plain 'C' in their respective alphabets.

@workani&@alexluthor
Privacy & legal

Privacy

No accounts, no ads, no tracking cookies, and no cross-site tracking. The only analytics we keep are faceless — anonymous, aggregated counts of pages and searches, never tied to you. We store no IP addresses, set no tracking cookies, and build no profiles. Cloudflare hosts the site and handles requests for delivery and security.

Full privacy policy·Extension privacy·legal@asciify.dev

Attributions & licenses

Twemoji
© Twitter, Inc and other contributors · CC-BY 4.0
Noto Color Emoji
© Google · Apache 2.0
Fluent UI Emoji
© Microsoft · MIT
OpenMoji
© HfG Schwäbisch Gmünd · CC-BY-SA 4.0
Toss Face
© Viva Republica (Toss) · SIL OFL 1.1
JoyPixels
© JoyPixels Inc. · Free Limited Use License
SerenityOS Emoji
© The SerenityOS Developers · BSD-2-Clause
EmojiTwo
© EmojiTwo contributors · CC-BY 4.0
Apple Color Emoji
© Apple, Inc.
Facebook Emoji
© Meta Platforms, Inc.

Apple and Facebook emoji styles are proprietary and shown here solely for reference and comparison — a common-sense application of nominative-use / fair-use principles. asciify is not affiliated with, endorsed by, or sponsored by Apple, Inc., Meta Platforms, Inc., or any other rights holder listed above. If a rights holder requests removal of their emoji style from this site, it will be removed.

All other vendor emoji are reproduced for reference and comparison under their respective open licenses listed above.

Character names and code points from the Unicode® Standard. Unicode® and the Unicode Logo are registered trademarks of Unicode, Inc.

Privacy
© asciify.dev 2025-2026