CSS2.1 Conformance Test Suite

Chapter 5 - Selectors (596 tests)

Test Flags
5 Selectors
5.1 Pattern matching
5.2 Selector syntax
5.2.1 Grouping
CSS 2.1 Test Suite: Selectors: Grouping: Invalid grouping
  • Browsers should ignore an invalid grouping
invalid
CSS 2.1 Test Suite: Selectors: Grouping
  • Browsers should apply the rule to all elements grouped
5.3 Universal selector
Universal selector
  • The universal selector applies to all elements.
Implied universal selector for pseudo selector
  • If the universal selector is not the only component of a simple pseudo selector the '*' can be omitted.
Implied universal selector for class selector
  • If the universal selector is not the only component of a simple class selector the * can be omitted.
Implied universal selector for ID
  • If the universal selector is not the only component of a simple id selector the * can be omitted.
universal selector
  • The universal selector matches the name of any element type. list-style-image applies to elements with 'display: list-item'.
G
5.4 Type selectors
Type selectors
  • Basic type selectors apply to each type.
5.5 Descendant selectors
Descendent selector does not apply to parent element
  • Descendent selectors are applied only to descendents.
Descendent selector
  • Descendent selectors are applied only to descendents.
Descendent selector with additional element between
  • Descendent selectors are applied to descendents even if additional elements separate parent and subject of selector.
Descendent selector with incorrect parent element
  • Descendent selectors are applied only to descendents where the parent element matches.
Grandchild selection with no children
  • Grandchild selection is applied only to elements which have grandchildren.
Grandchild selection with no grandchildren
  • Grandchild selection is applied only to elements which have grandchildren.
Grandchild selection
  • Grandchild selection is applied only to elements which are grandchildren.
Descendent selector with ID attribute does not match elements without the ID attribute
  • Descendent selector with attribute applies only to applicable elements.
Descendent selector with ID attribute
  • Descendent selector with attribute applies only to applicable elements.
Descendent selector and tabs
  • A descendant selector can be separated by a tab.
Descendent selector and newlines
  • A descendant selector can be separated by a newline.
CSS 2.1 Test Suite: Selectors: Descendant selectors
  • Browsers should apply each rule to the descendant elements
CSS 2.1 Test Suite: Selectors: Descendant selectors and universal selector
  • Browsers should apply each rule to the descendant elements
5.6 Child selectors
Child selector does not match when there is no matching parent
  • Child selectors only apply when parent and child elements match.
Child selector without direct child
  • Child selectors only apply to child elements when there is a direct parent child relationship.
Child selector
  • Child selectors apply to child elements.
5.7 Adjacent sibling selectors
Descendant combinators and newlines
  • Newlines can appear between a descendent combinator and the simple selectors around it.
Sibling combinators and spaces
  • Spaces can appear between a sibling combinator and its simple selectors.
Sibling combinators and newlines
  • Newlines can appear between a sibling combinator and the simple selectors around it.
Descendant combinators and spaces
  • Spaces can appear between a descendant combinator and the simple selectors around it.
Simple sibling selector
  • Sibling selector only applies to immediate siblings.
Sibling selector with non-element node
  • Sibling selector only applies to immediate siblings ignoring non-element nodes.
Sibling selector with non element node
  • Sibling selector only applies to immediate siblings ignoring text nodes.
CSS 2.1 Test Suite: Selectors: Adjacent selectors
  • Browsers should apply each rule to the adjacent element
CSS 2.1 Test Suite: Selectors: Adjacent selectors without the space separator
  • Browsers should apply each rule to the adjacent element also without the space separator
CSS 2.1 Test Suite: Selectors: Adjacent selectors with the universal selector
  • Browsers should apply each rule to the adjacent element when combined with the universal selector
Testing dynamic changes and the '+' combinator
  • Changing an attribute should cause selectors using '+' to match as needed.
O
:focus pseudo-class - adjacent sibling selector
  • An HTML 4 text input control must be focused in order to enter text into it. The :focus pseudo-class applies to a text input control while it has the focus (accepts keyboard events or other forms of text input). Triggering the :focus state to a text input control should not require to move the pointing device out of it.
I
:focus pseudo-class - adjacent sibling selector
  • An HTML 4 radio button must receive focus state when clicking on it or when selecting it with the keyboard. The :focus pseudo-class applies to a radio button while it has the focus (accepts keyboard events or other forms of input). Triggering the :focus state to a radio button should not require to move the pointing device out it.
I
:focus pseudo-class - adjacent sibling selector
  • An HTML 4 textarea must be focused in order to enter text into it. The :focus pseudo-class applies to a textarea while it has the focus (accepts keyboard events or other forms of text input). Triggering the :focus state to a textarea should not require to move the pointing device out of such textarea.
I
5.8 Attribute selectors
ID selector without value and no matching element
  • Attribute selector without a value matches any element which has that attribute set.
Attribute selector without value
  • Attribute selector without a value matches any element which has that attribute set.
Attribute selector matching value
  • Selector matches attribute with specific value.
Attribute selector matching value in hyphenated list
  • Selector matches attributes with specific value in a hyphen-separated list.
Attribute selector matching value in list
  • Selector matches attribute with specific value in a space-separated list.
Numeric attributes
  • Attributes cannot begin with numerals.
invalid
Case sensitivity of attributes and attribute values in HTML 4.01
  • HTML 4.01 attribute names are not case sensitive.
Multiple and repeating attributes
  • Multiple attribute selectors can be used to refer to several attributes of an element, or even several times to the same attribute.
HTML case sensitivity - Simple selectors
  • Simple selectors are not case sensitive in HTML.
lang attribute selector - att=val
  • lang attribute selector with att=val in HTML should not be case sensitive, and should only match when att is exactly val
lang attribute selector - att |= val
  • lang attribute selector with 'att |= val' in HTML should not be case sensitive, and match hyphen-separated list
CSS 2.1 Test Suite: Selectors: Attribute selectors: Generic match
  • Browsers should apply each rule to the elements with the specified attribute, disregarding its value
CSS 2.1 Test Suite: Selectors: Attribute selectors: Generic match with the universal selector
  • Browsers should apply each rule to the elements with the specified attribute, disregarding its value
CSS 2.1 Test Suite: Selectors: Attribute selectors: Exact match
  • Browsers should apply each rule to the elements with the specified attribute and the specified value
CSS 2.1 Test Suite: Selectors: Attribute selectors: Exact match with the universal selector
  • Browsers should apply each rule to the elements with the specified attribute and the specified value
CSS 2.1 Test Suite: Selectors: Attribute selectors: Partial match
  • Browsers should apply each rule to the elements with one of the values separated by a space
CSS 2.1 Test Suite: Selectors: Attribute selectors: Partial match with the universal selector
  • Browsers should apply each rule to the elements with one of the values separated by a space
CSS 2.1 Test Suite: Selectors: Attribute selectors: Substring matching
  • Browsers should apply each rule to the elements which have an hyphen-separated list of attribute values
CSS 2.1 Test Suite: Selectors: Attribute selectors: Substring matching with the universal selector
  • Browsers should apply each rule to the elements which have an hyphen-separated list of attribute values
Testing dynamic changes and the '+' combinator
  • Changing an attribute should cause selectors using '+' to match as needed.
O
5.8.1 Matching attributes and attribute values
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
5.8.2 Default attribute values in DTDs
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
attribute selector - Default attribute values in DTDs
  • Default attribute values may be declared in an external resource such as a DTD. In such case, the default attributes may or may not appear in the document tree. When default attributes appear in the document tree, then their correspondent default values must be included.
5.8.3 Class selectors
Class selectors with only a partial match of 'class' attribute
  • Class selector need to match any or all of the values in the 'class' attribute.
Class selectors with a type
  • Class selector with a type, match the appropriate element.
Class selectors without a type
  • Class selector without a type, match the appropriate element.
Invalid class selectors with a space between the "." and the class name
  • The attribute value of a class selector followed by white space is invalid.
invalid
Invalid class selectors with a carriage return between the "." and the class name
  • The attribute value of a class selector followed by white space is invalid.
invalid
Multiple class selectors
  • All class names in the selector need to match all of the 'class' attribute values.
Multiple class selectors and missing class values
  • All class names in the selector need to match all of the 'class' attribute values.
CSS 2.1 Test Suite: Selectors: Class selectors
  • Browsers should apply each rule to the elements which have the specified class
CSS 2.1 Test Suite: Selectors: Class selectors with the universal selector
  • Browsers should apply each rule to the elements which have the specified class
CSS 2.1 Test Suite: Selectors: Class selectors: Multiple classes
  • Browsers should apply each rule to the elements which have the specified class or classes
5.9 ID selectors
Simple ID selectors
  • ID selector matches appropriate element.
ID selector syntax - Begins with hyphen
  • Identifier selectors starting with a hyphen are valid.
Invalid ID selector syntax - white space between # and id
  • White space is not allowed between # and identifier for selector.
invalid
Invalid ID selector syntax - Begins with numerals
  • Identifier selectors are invalid if it begins with a numeral.
invalid
Simple ID selectors specificity over attribute selectors
  • ID selectors trump attribute selectors in specificity.
CSS 2.1 Test Suite: Selectors: ID selectors
  • Browsers should apply each rule to the elements which have the specified ID
CSS 2.1 Test Suite: Selectors: ID selectors with universal selector
  • Browsers should apply each rule to the elements which have the specified ID
5.10 Pseudo-elements and pseudo-classes
5.11 Pseudo-classes
5.11.1 :first-child pseudo-class
First-child pseudo-class
  • First-child pseudo-class matches only the first element of its type.
First-child pseudo-class with text node
  • First-child pseudo-class matches only the first element of its type ignoring text nodes.
CSS 2.1 Test Suite: Selectors: The :first-child pseudo-class
  • Browsers should apply each rule to the element which is the first child of its parent
CSS 2.1 Test Suite: Selectors: The :first-child pseudo-class with the universal selector
  • Browsers should apply each rule to the element which is the first child of its parent
5.11.2 The link pseudo-classes: :link and :visited
5.11.3 The dynamic pseudo-classes: :hover, :active, and :focus
Active pseudo-class matching
  • Active pseudo-class selector matches any element which has been activated until it has been deactivated.
I
Focus selector on controls
  • Focus pseudo-class matches any element which has input focus.
I
Hover selector on a simple element
  • The :hover pseudo-class selects an element which is being hovered by the mouse cursor.
I
Effect of DOM mutations on :hover matching O
Effect of DOM mutations on :hover matching O
CSS 2.1 Test Suite: Selectors: The dynamic pseudo-classes: :hover on links
  • Browsers should honour the change of state in the elements
I
CSS 2.1 Test Suite: Selectors: The dynamic pseudo-classes: :hover on different elements
  • Browsers should honour the change of state in the elements
I
CSS 2.1 Test Suite: Selectors: The dynamic pseudo-classes: :active
  • Browsers should honour the change of state in the elements
I
CSS 2.1 Test Suite: Selectors: The dynamic pseudo-classes: :focus
  • Browsers should honour the change of state in the elements
I
:focus pseudo-class - adjacent sibling selector
  • An HTML 4 text input control must be focused in order to enter text into it. The :focus pseudo-class applies to a text input control while it has the focus (accepts keyboard events or other forms of text input). Triggering the :focus state to a text input control should not require to move the pointing device out of it.
I
:focus pseudo-class - adjacent sibling selector
  • An HTML 4 radio button must receive focus state when clicking on it or when selecting it with the keyboard. The :focus pseudo-class applies to a radio button while it has the focus (accepts keyboard events or other forms of input). Triggering the :focus state to a radio button should not require to move the pointing device out it.
I
:focus pseudo-class - adjacent sibling selector
  • An HTML 4 textarea must be focused in order to enter text into it. The :focus pseudo-class applies to a textarea while it has the focus (accepts keyboard events or other forms of text input). Triggering the :focus state to a textarea should not require to move the pointing device out of such textarea.
I
5.11.4 The language pseudo-class: :lang
Selectors :lang pseudo-class
  • The :lang pseudo-class selector matches any element with a matching lang attribute.
Empty :lang selector
  • Language identifier cannot be empty.
invalid
Invalid language name for :lang selector
  • The language identifier in the :lang selector doesn't have to be a valid language name.
Inherited lang attribute selected
  • Lang attribute is inherited and lang selector works on children.
Lang selector and document language set via server's content-language
  • Lang attribute is selectable when specified by HTTP header.
Lang selector and document language set via meta tag
  • Lang attribute is selectable when specified in a meta tag.
:lang pseudoclass
  • :lang pseudoclass in HTML should not be case-sensitive, and match a substring
5.12 Pseudo-elements
5.12.1 The :first-line pseudo-element
Inline-block usage with :first-letter
  • The first letter of an inline-block cannot be the first letter of an ancestor element.
Table-cell usage with :first-letter
  • The first letter of a table-cell cannot be the first letter of an ancestor element.
First-line pseudo-element
  • The :first-line pseudo-element matches the first line of a given element.
First-line selector applicability to table cells
  • The :first-line pseudo-element can be attached to a table-cell.
Table cells usage with :first-line
  • The first line of a table-cell cannot be the first formatted line of an ancestor element.
First-line and in-flow block level descendents
  • The 'first formatted line' of an element can occur inside a block-level descendant in the same flow.
First-line and inline elements
  • First-line applies to inline elements.
First-line and font property
  • First-line allows font property.
First-line and allowed properties
  • First-line allows letter-spacing, text-decoration, text-transform and line-height properties.
First-line and inapplicable properties
  • First-line does not allow the float, border or direction properties.
First-line after a BR
  • The :first-line pseudo-element start tag is inserted right after the start tag of the block element.
Inline-block usage with :first-line
  • The first line of an inline-block cannot be the first formatted line of an ancestor element.
First-line selector applicability to table captions
  • The :first-line pseudo-element can be attached to a table caption.
First-line selector applicability to inline-blocks
  • The :first-line pseudo-element can be attached to an inline-block.
Pseudo elements before simple selector
  • A pseudo-selector cannot be followed by a simple selector.
First-line pseudo-element case sensitivity
  • First-line is case-insensitive.
Multiple pseudo-classes - hover and active
  • Hover and active pseudo-classes can be applied at the same time.
I
Pseudo-classes and layout
  • User agents are not required to reflow a currently displayed document due to pseudo-class transitions.
I
First-letter pseudo-element case sensitivity
  • First-letter is case-insensitive.
First-child pseudo-element case sensitivity
  • First-child is case-insensitive.
After and before case sensitivity
  • After and before are case-insensitive.
Pseudo-class ':visited' case sensitivity
  • The ':visited' pseudo-class' is case-insensitive.
I
Active pseudo-element case sensitivity
  • Active is case-insensitive.
I
Hover pseudo-element case sensitivity
  • Hover is case-insensitive.
I
Focus pseudo-element case sensitivity
  • Focus is case-insensitive.
I
Multiple pseudo-classes - Link, first-child, hover
  • Link, first-child, and hover can all be applied at the same time.
I
Pseudo elements before attribute selector
  • A pseudo-selector cannot be followed by an attribute selector.
Pseudo elements before child selector
  • A pseudo-selector cannot be followed by a child selector.
Pseudo elements not the last (invalid) - Sibling selector
  • A pseudo-selector cannot be followed by a sibling selector.
CSS 2.1 Test Suite: Selectors: The :first-line pseudo-element
  • Browsers should apply the rule only to the first line of a block-level element
5.12.2 The :first-letter pseudo-element
First-letter with the 'right parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right parenthesis'.
First-letter with the 'right square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right square bracket'.
First-letter with the 'right curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right curly bracket'.
First-letter with the 'tibetan mark gug rtags gyas' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark gug rtags gyas'.
First-letter with the 'tibetan mark ang khang gyas' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark ang khang gyas'.
First-letter with the 'ogham reversed feather mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ogham reversed feather mark'.
First-letter with the 'right square bracket with quill' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right square bracket with quill'.
First-letter with the 'superscript right parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'superscript right parenthesis'.
First-letter with the 'subscript right parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'subscript right parenthesis'.
First-letter with the 'right-pointing angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right-pointing angle bracket'.
First-letter with the 'bottom square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'bottom square bracket'.
First-letter with the 'medium right parenthesis ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'medium right parenthesis ornament'.
First-letter with the 'medium flattened right parenthesis ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'medium flattened right parenthesis ornament'.
First-letter with the 'medium right-pointing angle bracket ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'medium right-pointing angle bracket ornament'.
First-letter with the 'heavy right-pointing angle quotation mark ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'heavy right-pointing angle quotation mark ornament'.
First-letter with the 'heavy right-pointing angle bracket ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'heavy right-pointing angle bracket ornament'.
First-letter with the 'light right tortoise shell bracket ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'light right tortoise shell bracket ornament'.
First-letter with the 'medium right curly bracket ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'medium right curly bracket ornament'.
First-letter with the 'right s-shaped bag delimiter' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right s-shaped bag delimiter'.
First-letter with the 'mathematical right white square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mathematical right white square bracket'.
First-letter with the 'mathematical right angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mathematical right angle bracket'.
First-letter with the 'mathematical right double angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mathematical right double angle bracket'.
First-letter with the 'right white curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right white curly bracket'.
First-letter with the 'right white parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right white parenthesis'.
First-letter with the 'z notation right image bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'z notation right image bracket'.
First-letter with the 'z notation right binding bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'z notation right binding bracket'.
First-letter with the 'right square bracket with underbar' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right square bracket with underbar'.
First-letter with the 'right square bracket with tick in bottom corner' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right square bracket with tick in bottom corner'.
First-letter with the 'right square bracket with tick in top corner' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right square bracket with tick in top corner'.
First-letter with the 'right angle bracket with dot' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right angle bracket with dot'.
First-letter with the 'right arc greater-than bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right arc greater-than bracket'.
First-letter with the 'double right arc less-than bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double right arc less-than bracket'.
First-letter with the 'right black tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right black tortoise shell bracket'.
First-letter with the 'right wiggly fence' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right wiggly fence'.
First-letter with the 'right double wiggly fence' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right double wiggly fence'.
First-letter with the 'right-pointing curved angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right-pointing curved angle bracket'.
First-letter with the 'right angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right angle bracket'.
First-letter with the 'right double angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right double angle bracket'.
First-letter with the 'right corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right corner bracket'.
First-letter with the 'right white corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right white corner bracket'.
First-letter with the 'right black lenticular bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right black lenticular bracket'.
First-letter with the 'right tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right tortoise shell bracket'.
First-letter with the 'right white lenticular bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right white lenticular bracket'.
First-letter with the 'right white tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right white tortoise shell bracket'.
First-letter with the 'right white square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right white square bracket'.
First-letter with the 'double prime quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double prime quotation mark'.
First-letter with the 'low double prime quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'low double prime quotation mark'.
First-letter with the 'ornate right parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ornate right parenthesis'.
First-letter with the 'presentation form for vertical right white lenticular bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right white lenticular bracket'.
First-letter with the 'presentation form for vertical right parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right parenthesis'.
First-letter with the 'presentation form for vertical right curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right curly bracket'.
First-letter with the 'presentation form for vertical right tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right tortoise shell bracket'.
First-letter with the 'presentation form for vertical right black lenticular bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right black lenticular bracket'.
First-letter with the 'presentation form for vertical right double angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right double angle bracket'.
First-letter with the 'presentation form for vertical right angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right angle bracket'.
First-letter with the 'presentation form for vertical right corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right corner bracket'.
First-letter with the 'presentation form for vertical right white corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right white corner bracket'.
First-letter with the 'presentation form for vertical right square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical right square bracket'.
First-letter with the 'small right parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small right parenthesis'.
First-letter with the 'small right curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small right curly bracket'.
First-letter with the 'small right tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small right tortoise shell bracket'.
First-letter with the 'fullwidth right parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth right parenthesis'.
First-letter with the 'fullwidth right square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth right square bracket'.
First-letter with the 'fullwidth right curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth right curly bracket'.
First-letter with the 'fullwidth right white parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth right white parenthesis'.
First-letter with the 'halfwidth right corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'halfwidth right corner bracket'.
First-letter with the 'right-pointing double angle quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right-pointing double angle quotation mark'.
First-letter with the 'right single quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right single quotation mark'.
First-letter with the 'right double quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right double quotation mark'.
First-letter with the 'single right-pointing angle quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'single right-pointing angle quotation mark'.
First-letter with the 'right substitution bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right substitution bracket'.
First-letter with the 'right dotted substitution bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right dotted substitution bracket'.
First-letter with the 'right transposition bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right transposition bracket'.
First-letter with the 'right raised omission bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right raised omission bracket'.
First-letter with the 'right low paraphrase bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right low paraphrase bracket'.
First-letter with the 'left-pointing double angle quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left-pointing double angle quotation mark'.
First-letter with the 'left single quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left single quotation mark'.
First-letter with the 'single high-reversed-9 quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'single high-reversed-9 quotation mark'.
First-letter with the 'left double quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left double quotation mark'.
First-letter with the 'double high-reversed-9 quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double high-reversed-9 quotation mark'.
First-letter with the 'single left-pointing angle quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'single left-pointing angle quotation mark'.
First-letter with the 'left substitution bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left substitution bracket'.
First-letter with the 'left dotted substitution bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left dotted substitution bracket'.
First-letter with the 'left transposition bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left transposition bracket'.
First-letter with the 'left raised omission bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left raised omission bracket'.
First-letter with the 'left low paraphrase bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left low paraphrase bracket'.
First-letter with the 'exclamation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'exclamation mark'.
First-letter with the 'quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'quotation mark'.
First-letter with the 'number sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'number sign'.
First-letter with the 'percent sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'percent sign'.
First-letter with the 'ampersand' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ampersand'.
First-letter with the 'apostrophe' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'apostrophe'.
First-letter with the 'asterisk' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'asterisk'.
First-letter with the 'comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'comma'.
First-letter with the 'full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'full stop'.
First-letter with the 'solidus' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'solidus'.
First-letter with the 'colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'colon'.
First-letter with the 'semicolon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'semicolon'.
First-letter with the 'question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'question mark'.
First-letter with the 'commercial at' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'commercial at'.
First-letter with the 'reverse solidus' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'reverse solidus'.
First-letter with the 'inverted exclamation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'inverted exclamation mark'.
First-letter with the 'middle dot' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'middle dot'.
First-letter with the 'inverted question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'inverted question mark'.
First-letter with the 'greek question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'greek question mark'.
First-letter with the 'greek ano teleia' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'greek ano teleia'.
First-letter with the 'armenian apostrophe' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'armenian apostrophe'.
First-letter with the 'armenian emphasis mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'armenian emphasis mark'.
First-letter with the 'armenian exclamation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'armenian exclamation mark'.
First-letter with the 'armenian comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'armenian comma'.
First-letter with the 'armenian question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'armenian question mark'.
First-letter with the 'armenian abbreviation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'armenian abbreviation mark'.
First-letter with the 'armenian full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'armenian full stop'.
First-letter with the 'hebrew punctuation maqaf' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'hebrew punctuation maqaf'.
First-letter with the 'hebrew punctuation paseq' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'hebrew punctuation paseq'.
First-letter with the 'hebrew punctuation sof pasuq' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'hebrew punctuation sof pasuq'.
First-letter with the 'hebrew punctuation nun hafukha' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'hebrew punctuation nun hafukha'.
First-letter with the 'hebrew punctuation geresh' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'hebrew punctuation geresh'.
First-letter with the 'hebrew punctuation gershayim' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'hebrew punctuation gershayim'.
First-letter with the 'arabic comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic comma'.
First-letter with the 'arabic date separator' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic date separator'.
First-letter with the 'arabic semicolon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic semicolon'.
First-letter with the 'arabic triple dot punctuation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic triple dot punctuation mark'.
First-letter with the 'arabic question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic question mark'.
First-letter with the 'arabic percent sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic percent sign'.
First-letter with the 'arabic decimal separator' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic decimal separator'.
First-letter with the 'arabic thousands separator' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic thousands separator'.
First-letter with the 'arabic five pointed star' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic five pointed star'.
First-letter with the 'arabic full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'arabic full stop'.
First-letter with the 'syriac end of paragraph' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac end of paragraph'.
First-letter with the 'syriac supralinear full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac supralinear full stop'.
First-letter with the 'syriac sublinear full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac sublinear full stop'.
First-letter with the 'syriac supralinear colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac supralinear colon'.
First-letter with the 'syriac sublinear colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac sublinear colon'.
First-letter with the 'syriac horizontal colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac horizontal colon'.
First-letter with the 'syriac colon skewed left' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac colon skewed left'.
First-letter with the 'syriac colon skewed right' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac colon skewed right'.
First-letter with the 'syriac supralinear colon skewed left' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac supralinear colon skewed left'.
First-letter with the 'syriac sublinear colon skewed right' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac sublinear colon skewed right'.
First-letter with the 'syriac contraction' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac contraction'.
First-letter with the 'syriac harklean obelus' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac harklean obelus'.
First-letter with the 'syriac harklean metobelus' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac harklean metobelus'.
First-letter with the 'syriac harklean asteriscus' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'syriac harklean asteriscus'.
First-letter with the 'devanagari danda' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'devanagari danda'.
First-letter with the 'devanagari double danda' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'devanagari double danda'.
First-letter with the 'devanagari abbreviation sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'devanagari abbreviation sign'.
First-letter with the 'sinhala punctuation kunddaliya' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'sinhala punctuation kunddaliya'.
First-letter with the 'thai character fongman' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'thai character fongman'.
First-letter with the 'thai character angkhankhu' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'thai character angkhankhu'.
First-letter with the 'thai character khomut' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'thai character khomut'.
First-letter with the 'tibetan mark initial yig mgo mdun ma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark initial yig mgo mdun ma'.
First-letter with the 'tibetan mark closing yig mgo sgab ma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark closing yig mgo sgab ma'.
First-letter with the 'tibetan mark caret yig mgo phur shad ma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark caret yig mgo phur shad ma'.
First-letter with the 'tibetan mark yig mgo tsheg shad ma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark yig mgo tsheg shad ma'.
First-letter with the 'tibetan mark sbrul shad' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark sbrul shad'.
First-letter with the 'tibetan mark bskur yig mgo' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark bskur yig mgo'.
First-letter with the 'tibetan mark bka- shog yig mgo' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark bka- shog yig mgo'.
First-letter with the 'tibetan mark intersyllabic tsheg' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark intersyllabic tsheg'.
First-letter with the 'tibetan mark delimiter tsheg bstar' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark delimiter tsheg bstar'.
First-letter with the 'tibetan mark shad' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark shad'.
First-letter with the 'tibetan mark nyis shad' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark nyis shad'.
First-letter with the 'tibetan mark tsheg shad' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark tsheg shad'.
First-letter with the 'tibetan mark nyis tsheg shad' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark nyis tsheg shad'.
First-letter with the 'tibetan mark rin chen spungs shad' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark rin chen spungs shad'.
First-letter with the 'tibetan mark rgya gram shad' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark rgya gram shad'.
First-letter with the 'tibetan mark paluta' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark paluta'.
First-letter with the 'tibetan mark bska- shog gi mgo rgyan' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark bska- shog gi mgo rgyan'.
First-letter with the 'tibetan mark mnyam yig gi mgo rgyan' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark mnyam yig gi mgo rgyan'.
First-letter with the 'myanmar sign little section' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'myanmar sign little section'.
First-letter with the 'myanmar sign section' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'myanmar sign section'.
First-letter with the 'myanmar symbol locative' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'myanmar symbol locative'.
First-letter with the 'myanmar symbol completed' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'myanmar symbol completed'.
First-letter with the 'myanmar symbol aforementioned' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'myanmar symbol aforementioned'.
First-letter with the 'myanmar symbol genitive' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'myanmar symbol genitive'.
First-letter with the 'georgian paragraph separator' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'georgian paragraph separator'.
First-letter with the 'ethiopic wordspace' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ethiopic wordspace'.
First-letter with the 'ethiopic full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ethiopic full stop'.
First-letter with the 'ethiopic comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ethiopic comma'.
First-letter with the 'ethiopic semicolon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ethiopic semicolon'.
First-letter with the 'ethiopic colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ethiopic colon'.
First-letter with the 'ethiopic preface colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ethiopic preface colon'.
First-letter with the 'ethiopic question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ethiopic question mark'.
First-letter with the 'ethiopic paragraph separator' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ethiopic paragraph separator'.
First-letter with the 'canadian syllabics chi sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'canadian syllabics chi sign'.
First-letter with the 'canadian syllabics full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'canadian syllabics full stop'.
First-letter with the 'runic single punctuation' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'runic single punctuation'.
First-letter with the 'runic multiple punctuation' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'runic multiple punctuation'.
First-letter with the 'runic cross punctuation' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'runic cross punctuation'.
First-letter with the 'philippine single punctuation' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'philippine single punctuation'.
First-letter with the 'philippine double punctuation' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'philippine double punctuation'.
First-letter with the 'khmer sign khan' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'khmer sign khan'.
First-letter with the 'khmer sign bariyoosan' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'khmer sign bariyoosan'.
First-letter with the 'khmer sign camnuc pii kuuh' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'khmer sign camnuc pii kuuh'.
First-letter with the 'khmer sign beyyal' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'khmer sign beyyal'.
First-letter with the 'khmer sign phnaek muan' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'khmer sign phnaek muan'.
First-letter with the 'khmer sign koomuut' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'khmer sign koomuut'.
First-letter with the 'mongolian birga' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian birga'.
First-letter with the 'mongolian ellipsis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian ellipsis'.
First-letter with the 'mongolian comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian comma'.
First-letter with the 'mongolian full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian full stop'.
First-letter with the 'mongolian colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian colon'.
First-letter with the 'mongolian four dots' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian four dots'.
First-letter with the 'mongolian sibe syllable boundary marker' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian sibe syllable boundary marker'.
First-letter with the 'mongolian manchu comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian manchu comma'.
First-letter with the 'mongolian manchu full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian manchu full stop'.
First-letter with the 'mongolian nirugu' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mongolian nirugu'.
First-letter with the 'limbu exclamation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'limbu exclamation mark'.
First-letter with the 'limbu question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'limbu question mark'.
First-letter with the 'new tai lue sign lae' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'new tai lue sign lae'.
First-letter with the 'new tai lue sign laev' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'new tai lue sign laev'.
First-letter with the 'buginese pallawa' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'buginese pallawa'.
First-letter with the 'buginese end of section' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'buginese end of section'.
First-letter with the 'double vertical line' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double vertical line'.
First-letter with the 'double low line' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double low line'.
First-letter with the 'dagger' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'dagger'.
First-letter with the 'double dagger' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double dagger'.
First-letter with the 'bullet' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'bullet'.
First-letter with the 'triangular bullet' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'triangular bullet'.
First-letter with the 'one dot leader' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'one dot leader'.
First-letter with the 'two dot leader' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'two dot leader'.
First-letter with the 'horizontal ellipsis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'horizontal ellipsis'.
First-letter with the 'hyphenation point' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'hyphenation point'.
First-letter with the 'per mille sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'per mille sign'.
First-letter with the 'per ten thousand sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'per ten thousand sign'.
First-letter with the 'prime' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'prime'.
First-letter with the 'double prime' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double prime'.
First-letter with the 'triple prime' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'triple prime'.
First-letter with the 'reversed prime' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'reversed prime'.
First-letter with the 'reversed double prime' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'reversed double prime'.
First-letter with the 'reversed triple prime' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'reversed triple prime'.
First-letter with the 'caret' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection -'caret'.
First-letter with the 'reference mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'reference mark'.
First-letter with the 'double exclamation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double exclamation mark'.
First-letter with the 'interrobang' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'interrobang'.
First-letter with the 'overline' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'overline'.
First-letter with the 'caret insertion point' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'caret insertion point'.
First-letter with the 'asterism' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'asterism'.
First-letter with the 'hyphen bullet' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'hyphen bullet'.
First-letter with the 'double question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double question mark'.
First-letter with the 'question exclamation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'question exclamation mark'.
First-letter with the 'exclamation question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'exclamation question mark'.
First-letter with the 'tironian sign et' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tironian sign et'.
First-letter with the 'reversed pilcrow sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'reversed pilcrow sign'.
First-letter with the 'black leftwards bullet' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'black leftwards bullet'.
First-letter with the 'black rightwards bullet' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'black rightwards bullet'.
First-letter with the 'low asterisk' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'low asterisk'.
First-letter with the 'reversed semicolon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'reversed semicolon'.
First-letter with the 'close up' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'close up'.
First-letter with the 'two asterisks aligned vertically' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'two asterisks aligned vertically'.
First-letter with the 'swung dash' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'swung dash'.
First-letter with the 'flower punctuation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'flower punctuation mark'.
First-letter with the 'three dot punctuation' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'three dot punctuation'.
First-letter with the 'quadruple prime' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'quadruple prime'.
First-letter with the 'four dot punctuation' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'four dot punctuation'.
First-letter with the 'five dot punctuation' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'five dot punctuation'.
First-letter with the 'two dot punctuation' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'two dot punctuation'.
First-letter with the 'four dot mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'four dot mark'.
First-letter with the 'dotted cross' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'dotted cross'.
First-letter with the 'tricolon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tricolon'.
First-letter with the 'vertical four dots' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'vertical four dots'.
First-letter with the 'bottom square bracket over top square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'bottom square bracket over top square bracket'.
First-letter with the 'coptic old nubian full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'coptic old nubian full stop'.
First-letter with the 'coptic old nubian direct question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'coptic old nubian direct question mark'.
First-letter with the 'coptic old nubian indirect question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'coptic old nubian indirect question mark'.
First-letter with the 'coptic old nubian verse divider' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'coptic old nubian verse divider'.
First-letter with the 'coptic full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'coptic full stop'.
First-letter with the 'coptic morphological divider' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'coptic morphological divider'.
First-letter with the 'right angle substitution marker' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right angle substitution marker'.
First-letter with the 'right angle dotted substitution marker' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'right angle dotted substitution marker'.
First-letter with the 'raised interpolation marker' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'raised interpolation marker'.
First-letter with the 'raised dotted interpolation marker' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'raised dotted interpolation marker' .
First-letter with the 'dotted transposition marker' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'dotted transposition marker'.
First-letter with the 'raised square' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'raised square'.
First-letter with the 'editorial coronis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'editorial coronis'.
First-letter with the 'paragraphos' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'paragraphos'.
First-letter with the 'forked paragraphos' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'forked paragraphos'.
First-letter with the 'reversed forked paragraphos' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'reversed forked paragraphos'.
First-letter with the 'hypodiastole' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'hypodiastole'.
First-letter with the 'dotted obelos' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'dotted obelos'.
First-letter with the 'downwards ancora' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'downwards ancora'.
First-letter with the 'upwards ancora' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'upwards ancora'.
First-letter with the 'dotted right-pointing angle' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'dotted right-pointing angle'.
First-letter with the 'ideographic comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ideographic comma'.
First-letter with the 'ideographic full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ideographic full stop'.
First-letter with the 'ditto mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ditto mark'.
First-letter with the 'part alternation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'part alternation mark'.
First-letter with the 'katakana middle dot' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'katakana middle dot'.
First-letter with the 'presentation form for vertical comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical comma'.
First-letter with the 'presentation form for vertical ideographic comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical ideographic comma'.
First-letter with the 'presentation form for vertical ideographic full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical ideographic full stop'.
First-letter with the 'presentation form for vertical colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical colon'.
First-letter with the 'presentation form for vertical semicolon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical semicolon'.
First-letter with the 'presentation form for vertical exclamation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical exclamation mark'.
First-letter with the 'presentation form for vertical question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical question mark'.
First-letter with the 'presentation form for vertical horizontal ellipsis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical horizontal ellipsis'.
First-letter with the 'presentation form for vertical two dot leader' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical two dot leader'.
First-letter with the 'sesame dot' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'sesame dot'.
First-letter with the 'white sesame dot' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'white sesame dot'.
First-letter with the 'dashed overline' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'dashed overline'.
First-letter with the 'centreline overline' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'centreline overline'.
First-letter with the 'wavy overline' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'wavy overline'.
First-letter with the 'double wavy overline' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double wavy overline'.
First-letter with the 'small comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small comma'.
First-letter with the 'small ideographic comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small ideographic comma'.
First-letter with the 'small full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small full stop'.
First-letter with the 'small semicolon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small semicolon'.
First-letter with the 'small colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small colon'.
First-letter with the 'small question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small question mark'.
First-letter with the 'small exclamation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small exclamation mark'.
First-letter with the 'small number sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small number sign'.
First-letter with the 'small ampersand' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small ampersand'.
First-letter with the 'small asterisk' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small asterisk'.
First-letter with the 'small reverse solidus' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small reverse solidus'.
First-letter with the 'small percent sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small percent sign'.
First-letter with the 'small commercial at' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small commercial at'.
First-letter with the 'fullwidth exclamation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth exclamation mark'.
First-letter with the 'fullwidth quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth quotation mark'.
First-letter with the 'fullwidth number sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth number sign'.
First-letter with the 'fullwidth percent sign' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth percent sign'.
First-letter with the 'fullwidth ampersand' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth ampersand'.
First-letter with the 'fullwidth apostrophe' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth apostrophe'.
First-letter with the 'fullwidth asterisk' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth asterisk'.
First-letter with the 'fullwidth comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth comma'.
First-letter with the 'fullwidth full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth full stop'.
First-letter with the 'fullwidth solidus' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth solidus'.
First-letter with the 'fullwidth colon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth colon'.
First-letter with the 'fullwidth semicolon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth semicolon'.
First-letter with the 'fullwidth question mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth question mark'.
First-letter with the 'fullwidth commercial at' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth commercial at'.
First-letter with the 'fullwidth reverse solidus' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth reverse solidus'.
First-letter with the 'halfwidth ideographic full stop' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'halfwidth ideographic full stop'.
First-letter with the 'halfwidth ideographic comma' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'halfwidth ideographic comma'.
First-letter with the 'halfwidth katakana middle dot' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'halfwidth katakana middle dot'.
First-letter with the 'aegean word separator line' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'aegean word separator line'.
First-letter with the 'aegean word separator dot' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'aegean word separator dot'.
First-letter with the 'ugaritic word divider' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ugaritic word divider'.
First-letter with the 'kharoshthi punctuation dot' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'kharoshthi punctuation dot'.
First-letter with the 'kharoshthi punctuation small circle' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'kharoshthi punctuation small circle'.
First-letter with the 'kharoshthi punctuation circle' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'kharoshthi punctuation circle'.
First-letter with the 'kharoshthi punctuation crescent bar' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'kharoshthi punctuation crescent bar'.
First-letter with the 'kharoshthi punctuation mangalam' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'kharoshthi punctuation mangalam'.
First-letter with the 'kharoshthi punctuation lotus' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'kharoshthi punctuation lotus'.
First-letter with the 'kharoshthi punctuation danda' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'kharoshthi punctuation danda'.
First-letter with the 'kharoshthi punctuation double danda' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'kharoshthi punctuation double danda'.
First-letter with the 'kharoshthi punctuation lines' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'kharoshthi punctuation lines'.
First-letter with the 'left parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left parenthesis'.
First-letter with the 'left square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left square bracket'.
First-letter with the 'left curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left curly bracket'.
First-letter with the 'tibetan mark gug rtags gyon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark gug rtags gyon'.
First-letter with the 'tibetan mark ang khang gyon' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'tibetan mark ang khang gyon'.
First-letter with the 'ogham feather mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ogham feather mark'.
First-letter with the 'single low-9 quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'single low-9 quotation mark'.
First-letter with the 'double low-9 quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double low-9 quotation mark'.
First-letter with the 'left square bracket with quill' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left square bracket with quill'.
First-letter with the 'superscript left parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'superscript left parenthesis'.
First-letter with the 'subscript left parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'subscript left parenthesis'.
First-letter with the 'left-pointing angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left-pointing angle bracket'.
First-letter with the 'top square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'top square bracket'.
First-letter with the 'medium left parenthesis ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'medium left parenthesis ornament'.
First-letter with the 'medium flattened left parenthesis ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'medium flattened left parenthesis ornament'.
First-letter with the 'medium left-pointing angle bracket ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'medium left-pointing angle bracket ornament'.
First-letter with the 'heavy left-pointing angle quotation mark ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'heavy left-pointing angle quotation mark ornament'.
First-letter with the 'heavy left-pointing angle bracket ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'heavy left-pointing angle bracket ornament'.
First-letter with the 'light left tortoise shell bracket ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'light left tortoise shell bracket ornament'.
First-letter with the 'medium left curly bracket ornament' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'medium left curly bracket ornament'.
First-letter with the 'left s-shaped bag delimiter' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left s-shaped bag delimiter'.
First-letter with the 'mathematical left white square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mathematical left white square bracket'.
First-letter with the 'mathematical left angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mathematical left angle bracket'.
First-letter with the 'mathematical left double angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'mathematical left double angle bracket'.
First-letter with the 'left white curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left white curly bracket'.
First-letter with the 'left white parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left white parenthesis'.
First-letter with the 'z notation left image bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'z notation left image bracket'.
First-letter with the 'z notation left binding bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'z notation left binding bracket'.
First-letter with the 'left square bracket with underbar' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left square bracket with underbar'.
First-letter with the 'left square bracket with tick in top corner' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left square bracket with tick in top corner'.
First-letter with the 'left square bracket with tick in bottom corner' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left square bracket with tick in bottom corner'.
First-letter with the 'left angle bracket with dot' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left angle bracket with dot'.
First-letter with the 'left arc less-than bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left arc less-than bracket'.
First-letter with the 'double left arc greater-than bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'double left arc greater-than bracket'.
First-letter with the 'left black tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left black tortoise shell bracket'.
First-letter with the 'left wiggly fence' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left wiggly fence'.
First-letter with the 'left double wiggly fence' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left double wiggly fence'.
First-letter with the 'left-pointing curved angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left-pointing curved angle bracket'.
First-letter with the 'left angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left angle bracket'.
First-letter with the 'left double angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left double angle bracket'.
First-letter with the 'left corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left corner bracket'.
First-letter with the 'left white corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left white corner bracket'.
First-letter with the 'left black lenticular bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left black lenticular bracket'.
First-letter with the 'left tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left tortoise shell bracket'.
First-letter with the 'left white lenticular bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left white lenticular bracket'.
First-letter with the 'left white tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left white tortoise shell bracket'.
First-letter with the 'left white square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'left white square bracket' .
First-letter with the 'reversed double prime quotation mark' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'reversed double prime quotation mark'.
First-letter with the 'ornate left parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'ornate left parenthesis'.
First-letter with the 'presentation form for vertical left white lenticular bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left white lenticular bracket'.
First-letter with the 'presentation form for vertical left parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left parenthesis'.
First-letter with the 'presentation form for vertical left curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left curly bracket'.
First-letter with the 'presentation form for vertical left tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left tortoise shell bracket'.
First-letter with the 'presentation form for vertical left black lenticular bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left black lenticular bracket'.
First-letter with the 'presentation form for vertical left double angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left double angle bracket'.
First-letter with the 'presentation form for vertical left angle bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left angle bracket'.
First-letter with the 'presentation form for vertical left corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left corner bracket'.
First-letter with the 'presentation form for vertical left white corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left white corner bracket'.
First-letter with the 'presentation form for vertical left square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'presentation form for vertical left square bracket'.
First-letter with the 'small left parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small left parenthesis'.
First-letter with the 'small left curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small left curly bracket'.
First-letter with the 'small left tortoise shell bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'small left tortoise shell bracket'.
First-letter with the 'fullwidth left parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth left parenthesis'.
First-letter with the 'fullwidth left square bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth left square bracket'.
First-letter with the 'fullwidth left curly bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth left curly bracket'.
First-letter with the 'fullwidth left white parenthesis' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'fullwidth left white parenthesis'.
First-letter with the 'halfwidth left corner bracket' punctuation character
  • Punctuation characters defined in Unicode [UNICODE] in (Ps),(Pe),(Pi),(Pf) and (Po) punctuation classes that precede or follow the first letter are included in first-letter selection - 'halfwidth left corner bracket'.
First-letter pseudo-element
  • The :first-letter pseudo-element matches the first letter in a given element.
First-letter pseudo-element with image missing alt text
  • If there is preceding content (an image) or alt text the :first-letter pseudo-element does not match the first letter.
G
First-letter as a digit
  • The ':first-letter' applies if the first letter is a digit.
First-letter and :before
  • If an element has ':before' or ':after' content, the ':first-letter applies to the first letter of the element including that content.
First-letter with leading line break
  • The first letter occurs on the first formatted line.
First-letter with list items
  • If an element is a list item, the ':first-letter' applies to the first letter in the principal box after the marker.
First-letter with table cell elements
  • The :first-letter pseudo-element applies to table-cells.
First-letter with inline-block elements
  • The first-letter pseudo-element applies to inline-block elements.
First-letter and valid properties
  • The color, font-size, text-decoration, text-transform, background and border properties apply to :first-letter.
First-letter as a float
  • The float property applies to :first-letter.
First-letter using letter-spacing property
  • The letter-spacing property is allowed for :first-letter.
First-letter using margin
  • The margin property is allowed for :first-letter.
First-letter using background and padding
  • The background and padding properties is allowed for :first-letter.
First-letter using vertical-align and line-height
  • The vertical-align and line-height properties is allowed for :first-letter.
First-letter with img alt text
  • The ':first-letter' pseudo-element can be used with all such elements that contain text, or that have a descendant in the same flow that contains text.
G
First-letter with img preceding text
  • First-letter selects the first letter of a block if it is not preceded by any other content on its line.
G
First-letter with punctuation
  • The ':first-letter' pseudo-element also applies to punctuation.
First-letter in descendents
  • A user agent acts as if the fictional start tag of the first-letter pseudo-element is just before the first text of the element, even if that first text is in a descendant.
First-letter and language specific letter combinations
  • Some letter combinations in some languages may be considered part of the first-letter pseudo-element.
First-letter on list-style-position: inside
  • User agents may ignore ':first-letter' on list items with 'list-style-position: inside'.
First-letter in different elements than its punctuation
  • If the letters that would form the first-letter are not in the same element the user agent may create a first-letter pseudo-element from one of the elements, both elements, or simply not create a pseudo-element.
First-letter on bidi text
  • If the first letter of the block is not at the start of the line (for example due to bidirectional reordering), then the user agent need not create the pseudo-element.
First-letter with table caption elements
  • The :first-letter pseudo-element applies to table-captions.
:first-letter applied to joined text
  • :first-letter applied to joined text should not break joining
first-letter and inherent rtl
  • :first-letter applied to inherent RTL text should start from the right
:first-letter and direction:rtl - inherent ltr text
  • :first-letter applied to inherent LTR text in RTL context should adhere to text direction, not paragraph direction
:first-letter and bidi-override - inherent ltr text
  • :first-letter applied to inherent LTR text reordered with bidi-override should pick out the first logical letter
:first-letter and bidi-override - inherent rtl text
  • :first-letter applied to inherent RTL text reordered with bidi-override should pick out the first logical letter
:first-letter in the middle of the line because of bidi reordering
  • :first-letter not at the start of the line because of bidi reordering may not be applied, but if it is applied it should be applied to the logical first letter and no other letter
CSS 2.1 Test Suite: Selectors: The :first-letter pseudo-element
  • Browsers should apply the rule only to the first letter of a block-level element
5.12.3 The :before and :after pseudo-elements
After and before pseudo-elements
  • After and before pseudo-element allows inserted text after or before a given element.
First-letter pseudo-element with :before pseudo-element
  • When the :first-letter pseudo-element is combined with :before, :first-letter applies to the generated text of :before.