LATIN CAPITAL LETTER A WITH MACRON·U+0100

Ā

Character Information

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

Character Representations

Click elements to copy
EncodingHexBinary
UTF8
C4 80
11000100 10000000
UTF16 (big Endian)
01 00
00000001 00000000
UTF16 (little Endian)
00 01
00000000 00000001
UTF32 (big Endian)
00 00 01 00
00000000 00000000 00000001 00000000
UTF32 (little Endian)
00 01 00 00
00000000 00000001 00000000 00000000
HTML Entity
Ā
URI Encoded
%C4%80

Description

The Unicode character U+0100, also known as LATIN CAPITAL LETTER A WITH MACRON, is a significant typographical symbol in digital text representation. This character is used to denote the Latin capital letter 'A', but with an added macron diacritic mark, which is represented by a horizontal line over the letter. In linguistic and cultural contexts, this character serves as a crucial tool for representing distinct phonological features that may not be present in other languages using the Latin alphabet. The macron, typically signifies a long vowel sound or an elongated syllable. For example, in Irish Gaelic, "Á" represents /ɑː/ while "A" stands for /a/. The usage of U+0100 is predominantly technical, playing an essential role in digital typography, particularly in word processing, typesetting, and text encoding systems that require accurate representation of specific linguistic features or phonetic nuances. In the realm of linguistics and cultural studies, it facilitates precise transcription and translation, thereby fostering effective communication across different languages and dialects. This character belongs to the Latin Extended-A Unicode block, a crucial component of the Unicode system that expands the capabilities of the Latin alphabet for various languages. The macron is one of several diacritical marks in this block, designed to cater to the unique phonetic and orthographic needs of various languages using Latin-based scripts. In summary, the LATIN CAPITAL LETTER A WITH MACRON (U+0100) is an indispensable character in digital text, offering a precise typographical tool for representing elongated vowel sounds and distinct linguistic features across various languages using the Latin alphabet.

How to type the Ā symbol on Windows

Hold Alt and type 0256 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+0100. In UTF-8, it is encoded using 2 bytes because its codepoint is in the range of 0x0080 to 0x07ff.

    Therefore we know that the UTF-8 encoding will be done over 11 bits within the final 16 bits and that it will have the format: 110xxxxx 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+0100 to binary: 00000001 00000000. 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:
    11000100 10000000