HANGUL LETTER MIEUM·U+3141

Character Information

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

Character Representations

Click elements to copy
EncodingHexBinary
UTF8
E3 85 81
11100011 10000101 10000001
UTF16 (big Endian)
31 41
00110001 01000001
UTF16 (little Endian)
41 31
01000001 00110001
UTF32 (big Endian)
00 00 31 41
00000000 00000000 00110001 01000001
UTF32 (little Endian)
41 31 00 00
01000001 00110001 00000000 00000000
HTML Entity
ㅁ
URI Encoded
%E3%85%81

Description

The Unicode character U+3141, HANGUL LETTER MIEUM (also known as 'ㅘ'), is a fundamental component in the Korean alphabet system, Hangul. In digital text, it serves a crucial role by representing one of the twelve consonants in the Hangul script. Mieum signifies a nasalized stop, particularly an aspirated voiceless alveolar stop. The character is typically used to transcribe and transliterate Korean words in various digital platforms such as text editors, word processors, and websites. Its accurate and precise use in these contexts helps preserve the integrity of the Korean language in written form. Hangul, which includes Hangul LETTER MIEUM among its 144 constituent characters, is globally renowned for its simplicity and phonetic accuracy, allowing even beginners to learn the script relatively easily. This has significantly contributed to the rapid spread and popularity of Korean culture in recent years. In addition to language and cultural contexts, Hangul LETTER MIEUM also plays a technical role in digital encoding systems, as it is one of the characters that contribute to the unique identification and representation of the Korean language in computer files and databases. Overall, U+3141 HANGUL LETTER MIEUM is an indispensable element within the Korean script system, facilitating effective communication, cultural expression, and data preservation across digital platforms.

How to type the symbol on Windows

Hold Alt and type 12609 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+3141. 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+3141 to binary: 00110001 01000001. 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:
    11100011 10000101 10000001