KANGXI RADICAL SPEAR·U+2F6D

Character Information

Code Point
U+2F6D
HEX
2F6D
Unicode Plane
Basic Multilingual Plane
Category
Other Symbol

Character Representations

Click elements to copy
EncodingHexBinary
UTF8
E2 BD AD
11100010 10111101 10101101
UTF16 (big Endian)
2F 6D
00101111 01101101
UTF16 (little Endian)
6D 2F
01101101 00101111
UTF32 (big Endian)
00 00 2F 6D
00000000 00000000 00101111 01101101
UTF32 (little Endian)
6D 2F 00 00
01101101 00101111 00000000 00000000
HTML Entity
⽭
URI Encoded
%E2%BD%AD

Description

The character U+2F6D, or the "Kangxi Radical Spear," is a vital symbol within the field of typography and digital text. It derives its name from the Kangxi dictionary, which was compiled during the reign of the Kangxi Emperor in China (1654-1722). In this context, the term "radical" refers to a semantic or phonetic component of a Chinese character rather than a weapon. The Kangxi Radical Spear is one of the 560 radicals used in traditional Chinese script. These radicals are primarily used as a classification system for characters and aid in their arrangement, identification, and learning. The digital representation of the U+2F6D character serves multiple purposes. In addition to its use within Chinese typography, it is essential in Unicode, an encoding standard that allows computers to accurately represent, store, and transmit text from various languages. The character's inclusion in the Unicode Standard ensures that it can be reliably used across different platforms, applications, and systems. By employing this character, digital text can remain true to its original form, preserving cultural context and integrity. In summary, U+2F6D, or the Kangxi Radical Spear, is an integral part of typography and digital text representation. Its importance lies in its role as a classification system within traditional Chinese script and its function within the Unicode Standard for accurate text representation across platforms and applications. By understanding and utilizing this character, we can maintain the cultural, linguistic, and technical contexts essential to the preservation of diverse language systems.

How to type the symbol on Windows

Hold Alt and type 12141 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+2F6D. In UTF-8, it is encoded using 3 bytes because its codepoint is in the range of 0x0800 to 0xffff.

    Therefore we know that the UTF-8 encoding will be done over 16 bits within the final 24 bits and that it will have the format: 1110xxxx 10xxxxxx 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+2F6D to binary: 00101111 01101101. 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:
    11100010 10111101 10101101