LATIN CAPITAL LETTER C·U+0043

C

Character Information

Code Point
U+0043
HEX
0043
Unicode Plane
Basic Multilingual Plane
Category
Uppercase Letter

Character Representations

Click elements to copy
EncodingHexBinary
UTF8
43
01000011
UTF16 (big Endian)
00 43
00000000 01000011
UTF16 (little Endian)
43 00
01000011 00000000
UTF32 (big Endian)
00 00 00 43
00000000 00000000 00000000 01000011
UTF32 (little Endian)
43 00 00 00
01000011 00000000 00000000 00000000
HTML Entity
C
URI Encoded
C

Description

The character U+0043, also known as the Latin Capital Letter C (nameSlug: latin-capital-letter-c-u-0043), is a fundamental component of digital texts across numerous languages that utilize the Latin script. As a key element in the English alphabet and other alphabetic writing systems, it plays a crucial role as a letter in these languages. In addition to its primary function, the Latin Capital Letter C serves as a symbol in various domains such as mathematics, computer science, and information technology (category: Basic Latin). Originating from the Etruscan letter G, the Latin Capital Letter C has a rich cultural history dating back to ancient Rome. Today, it remains an essential element for conveying meaning and information in both written and digital communication across the globe. It's important to note that this character can be found in the Basic Multilingual Plane (range: 0-65535), which houses the most common characters used in digital communications (plane: Basic Multilingual Plane).

How to type the C symbol on Windows

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

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

    The character C has the Unicode code point U+0043. In UTF-8, it is encoded using 1 byte because its codepoint is in the range of 0x0000 to 0x007f.

    Therefore we know that the UTF-8 encoding will be done over 7 bits within the final 8 bits and that it will have the format: 0xxxxxxx
    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+0043 to binary: 01000011. 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:
    01000011