LATIN SMALL LETTER C WITH ACUTE·U+0107

ć

Character Information

Code Point
U+0107
HEX
0107
Unicode Plane
Basic Multilingual Plane
Category
Lowercase Letter

Character Representations

Click elements to copy
EncodingHexBinary
UTF8
C4 87
11000100 10000111
UTF16 (big Endian)
01 07
00000001 00000111
UTF16 (little Endian)
07 01
00000111 00000001
UTF32 (big Endian)
00 00 01 07
00000000 00000000 00000001 00000111
UTF32 (little Endian)
07 01 00 00
00000111 00000001 00000000 00000000
HTML Entity
ć
URI Encoded
%C4%87

Description

The Unicode character U+0107, also known as the Latin Small Letter C with Acute (LATIN SMALL LETTER C WITH ACUTE), plays a significant role in digital typography and linguistics, particularly within languages that utilize the Latin alphabet. This character is commonly used to represent the sound 'ç', which is distinct from the regular 'c' in various contexts. In cultures where these languages are spoken, such as Portuguese, French, Galician, Catalan, and Turkish, U+0107 aids in clear communication and understanding by accurately representing this unique phoneme. The acute accent (0301) above the 'c' indicates its pronunciation, which may be silent or voiceless without it. U+0107 is part of the Latin Extended-A Unicode block, a crucial component of the Unicode system that expands the capabilities of the Latin alphabet for various languages. The Latin Extended-A block (U+0256 to U+02AF) provides an array of diacritical characters and accented letters designed to cater to the unique phonetic and orthographic needs of languages using Latin-based scripts, promoting accuracy in representing sounds and enhancing readability. In technical terms, U+0107 has a general category of Ll (Letter, Lowercase), bidiClass of L (Left-to-Right), canonicalCombiningClass of 0, decompositionTypeAndMapping of 0063 0301, and no decimalDigitValue, digitValue, or numericValue. Its simpleUppercaseMapping is 0106, but it has no simpleLowercaseMapping or simpleTitlecaseMapping. Overall, U+0107 is an essential character in digital typography, contributing to accurate representation and communication across various languages that employ Latin script.

How to type the ć symbol on Windows

Hold Alt and type 0263 on the numpad. Or use Character Map.

  1. Step 1: Determine the UTF-8 encoding bit layout

    The character ć has the Unicode code point U+0107. In UTF-8, it is encoded using 2 bytes because its codepoint is in the range of 0x0080 to 0x07ff.

    Therefore we know that the UTF-8 encoding will be done over 11 bits within the final 16 bits and that it will have the format: 110xxxxx 10xxxxxx
    Where the x are the payload bits.

    UTF-8 Encoding bit layout by codepoint range
    Codepoint RangeBytesBit patternPayload length
    U+0000 - U+007F10xxxxxxx7 bits
    U+0080 - U+07FF2110xxxxx 10xxxxxx11 bits
    U+0800 - U+FFFF31110xxxx 10xxxxxx 10xxxxxx16 bits
    U+10000 - U+10FFFF411110xxx 10xxxxxx 10xxxxxx 10xxxxxx21 bits
  2. Step 2: Obtain the payload bits:

    Convert the hexadecimal code point U+0107 to binary: 00000001 00000111. Those are the payload bits.

  3. Step 3: Fill in the bits to match the bit pattern:

    Obtain the final bytes by arranging the paylod bits to match the bit layout:
    11000100 10000111