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
to0x007f
.
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 thex
are the payload bits.UTF-8 Encoding bit layout by codepoint range Codepoint Range Bytes Bit pattern Payload length U+0000 - U+007F 1 0xxxxxxx 7 bits U+0080 - U+07FF 2 110xxxxx 10xxxxxx 11 bits U+0800 - U+FFFF 3 1110xxxx 10xxxxxx 10xxxxxx 16 bits U+10000 - U+10FFFF 4 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx 21 bits Step 2: Obtain the payload bits:
Convert the hexadecimal code point U+0043 to binary:
01000011
. Those are the payload bits.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
LATIN CAPITAL LETTER C·U+0043
Character Information
Character Representations
Click elements to copyEncoding | Hex | Binary |
---|---|---|
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 |
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.