CSSライブデモ:text-emphasis-style デモボタンをクリックしてみてください。
selector {
    text-emphasis-style: none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | [ '커스텀 문자' ]
}
/* キーワード値 /
text-emphasis-style: none; / テキストに強調表示スタイルを適用しません。 /
text-emphasis-style: filled;
text-emphasis-style: open;
text-emphasis-style: dot;
text-emphasis-style: circle;
text-emphasis-style: double-circle;
text-emphasis-style: triangle;
text-emphasis-style: sesame;
text-emphasis-style: open sesame;
text-emphasis-style: sesame open; / 左右の順序は関係なし。=> open sesameと同じ */

/* 'カスタム文字' /
text-emphasis-style: 'K';
text-emphasis-style: 'k'; / 大文字・小文字は区別されます /
text-emphasis-style: "K"; / ダブルクォートでも同じ /
text-emphasis-style: 'Key'; / 文字を2つ以上指定した場合は最初の文字のみ表示されます。=> Kのみ表示 /
text-emphasis-style: '';
text-emphasis-style: '\00A9'; /* CSSエンティティ使用可能 => ©として表示 /
text-emphasis-style: '&'; / HTMLエンティティ使用可能 => &として表示 */

/* グローバル値 */
text-emphasis-style: inherit;
text-emphasis-style: initial;
text-emphasis-style: unset;
text-emphasis-style: revert;
text-emphasis-style: revert-layer;
p span {
    text-emphasis-style: triangle;
}
<p>テキストに<span>強調表示</span>があります。</p>
実際の適用例
p span {
    text-emphasis-style: 'A';
    font-size: 1.5em;
}
<p>テキストに<span>強調表示</span>があります。</p>
実際の適用例
p span {
    text-emphasis-style: open; /* text-emphasis-style: open dot;と同じ */
    font-size: 1.5em;
}
<p>テキストに<span>強調表示</span>があります。</p>
実際の適用例 text-emphasis-style: open dot;と同じように表示されます。
p span {
    writing-mode: vertical-rl; /* 縦書きモード */
    text-emphasis-style: open; /* text-emphasis-style: open sesame;と同じ */
    font-size: 1.5em;
}
<p>テキストに<span>強調表示</span>があります。</p>
実際の適用例 text-emphasis-style: open sesame;と同じように表示されます。