CSS Live Demo: text-emphasis Click the demo button below!
selector {
    text-emphasis: <'text-emphasis-style'> || <'text-emphasis-color'>
    /*  
        These values are for the
        text-emphasis-style and text-emphasis-color properties.
        The order of the specified property values does not matter.
        If a property value is not specified (omitted), the initial value is applied.
    */
}
/* Initial value */
text-emphasis: none; /* No emphasis mark is applied to the text. */

/* Keyword values */
text-emphasis: filled;
text-emphasis: open;
text-emphasis: dot;
text-emphasis: circle;
text-emphasis: double-circle;
text-emphasis: triangle;
text-emphasis: sesame;
text-emphasis: open sesame;
text-emphasis: sesame open; /* The order of the values does not matter. => same as open sesame */

/* 'Custom characters' */
text-emphasis: 'K';
text-emphasis: 'k'; /* Case-sensitive */
text-emphasis: "K"; /* The use of double quotes does not matter */
text-emphasis: 'Key'; /* When more than one character is used, only the first character is displayed. => Only 'K' is displayed */
text-emphasis: '*';
text-emphasis: '\00A9'; /* CSS entities are allowed => displayed as © */
text-emphasis: '&amp;'; /* HTML entities are allowed => displayed as & */

/* Keyword values with color */
text-emphasis: open sesame red;
text-emphasis: filled sesame #00a0e9;

/* Global values */
text-emphasis: inherit;
text-emphasis: initial;
text-emphasis: unset;
text-emphasis: revert;
text-emphasis: revert-layer;
p span {
    text-emphasis: triangle red;
}
<p>This text contains a <span>highlighted word</span>.</p>
Rendered Output
p span {
    text-emphasis: open red circle;
    /*
        If there are two text-emphasis-style values,
        the text-emphasis-color value cannot be placed between them.
    */
}
<p>This text contains a <span>highlighted word</span>.</p>
Rendered Output
p span {
    text-emphasis: 'z';
    font-size: 1.5em;
}
<p>This text contains a <span>highlighted word</span>.</p>
Rendered Output