<control>·U+0019



Character Information

Code Point
U+0019
HEX
0019
Unicode Plane
Basic Multilingual Plane
Category
Control

Character Representations

Click elements to copy
EncodingHexBinary
UTF8
19
00011001
UTF16 (big Endian)
00 19
00000000 00011001
UTF16 (little Endian)
19 00
00011001 00000000
UTF32 (big Endian)
00 00 00 19
00000000 00000000 00000000 00011001
UTF32 (little Endian)
19 00 00 00
00011001 00000000 00000000 00000000
HTML Entity
&#25;
URI Encoded
%19

Description

The character U+0019, also known as the Pilcrow (¶), is a Unicode symbol primarily used for proofreading, editing, and formatting purposes in digital text. Originally derived from the Greek piluma (πιλουμα), this paragraph mark signifies the start of a new paragraph in written content, enhancing reader navigation efficiency. Despite its prevalence in both modern and classic texts across various languages, its usage has diminished with the advent of automated paragraph markers and formatting tools in word processing software. The Pilcrow resides within the Basic Latin Unicode block (U+0000 to U+007F), which is an essential component of the Unicode system, housing 128 characters critical for programming languages, text documents, and various applications. The Pilcrow's role in typography underscores the significance of clear organization and structure in written communication, making it an indispensable symbol in the realm of digital text.

How to type the  symbol on Windows

Hold Alt and type 0025 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+0019. In UTF-8, it is encoded using 1 byte because its codepoint is in the range of 0x0000 to 0x007f.

    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 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+0019 to binary: 00011001. 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:
    00011001