HANGUL JONGSEONG RIEUL·U+11AF

Character Information

Code Point
U+11AF
HEX
11AF
Unicode Plane
Basic Multilingual Plane
Category
Other Letter

Character Representations

Click elements to copy
EncodingHexBinary
UTF8
E1 86 AF
11100001 10000110 10101111
UTF16 (big Endian)
11 AF
00010001 10101111
UTF16 (little Endian)
AF 11
10101111 00010001
UTF32 (big Endian)
00 00 11 AF
00000000 00000000 00010001 10101111
UTF32 (little Endian)
AF 11 00 00
10101111 00010001 00000000 00000000
HTML Entity
ᆯ
URI Encoded
%E1%86%AF

Description

The Hangul Jongseong Rieul (U+11AF) is a vital component of the Korean script system, playing a significant role in digital text communication. As part of the Unicode Standard, U+11AF contributes to the accurate representation and encoding of the Korean language in digital platforms. In its typical usage, Hangul Jongseong Rieul serves as one of the jongseong (조성) consonant-final letters in the Hangul writing system. These letters are essential for building syllable blocks known as jamo (자모), which combined with vowels form the basic units of the Korean language. Hangul, the native script of the Korean people, has its roots in the 15th century when King Sejong the Great commissioned its development to create a more accessible written form for the masses. The Jongseong letters are critical for accurately transcribing the diverse range of consonant sounds found in the Korean language. U+11AF specifically corresponds to the "Rieul" (리슬) sound, which is a glottal stop or voiceless implosive consonant. In terms of cultural and linguistic context, Hangul Jongseong Rieul has played a pivotal role in preserving and advancing the Korean language and culture. The standardized use of U+11AF and other Unicode characters ensures that digital text remains faithful to the original intent of Hangul's creators, facilitating clear communication and understanding for both native speakers and learners alike. In summary, the Hangul Jongseong Rieul (U+11AF) is an indispensable component of the Korean script system, contributing to accurate digital text representation and encoding through its role as a jongseong consonant-final letter. Its significance lies in its support for the diverse range of consonant sounds found in the Korean language, as well as its crucial role in preserving and advancing Korean culture and communication.

How to type the symbol on Windows

Hold Alt and type 4527 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+11AF. 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+11AF to binary: 00010001 10101111. 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:
    11100001 10000110 10101111