HTML Entity for Ts Digraph (ʦ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+02A6

What Is the Ts Digraph Entity?

Ts Digraph (ʦ) is the IPA Extensions character at Unicode U+02A6 (LATIN SMALL LETTER TS DIGRAPH). Use it for phonetic transcription of the voiceless alveolar affricate (as in the “ts” of cats).

Remember
Character     ʦ
Unicode       U+02A6
Hex entity    ʦ
Decimal       ʦ
Named entity  (none)
CSS escape    \02A6
Not the same  ʧ (tesh) · ʨ (tc curl) · ts

Hex, decimal, CSS, and a typed character all produce the same glyph: ʦ. Prefer ʦ when you want an explicit entity. There is no named HTML entity for this character.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entityʦHTML markup (best default)
Decimal entityʦHTML markup
CSS escape\02A6Stylesheet content
Direct characterʦUTF-8 HTML text
Named entityNoneUse numeric forms instead

When to Use Which

SituationUse
IPA / phonetic ts digraphʦ (preferred)
Decimal-only markupʦ
Generated text via ::before / ::aftercontent: "\02A6"
Tesh digraph (ʧ)Use U+02A7
Tempted to type ASCII tsUse ʦ for the single digraph glyph

Live Preview

Ts Digraph in phonetic context, compared with adjacent IPA digraphs.

Transcription [kaʦ]
Large glyph ʦ
Hex entity ʦ → ʦ
vs tesh / tc curl ʦ  |  ʧ  |  ʨ
With entities Hex: ʦ | Decimal: ʦ

Complete HTML Example

One page that shows Ts Digraph with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ʦ in HTML and CSS (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Ts Digraph (ʦ)</title>
  <style>
    #point::after {
      content: "\02A6";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x02A6;</p>
  <p>Built with Decimal: &#678;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ʦ</p>
  <p>[ka&#x02A6;]</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x02A6; inserts Unicode code point 02A6 → ʦ.

2. Decimal: same code point as 678 → &#678;.

3. CSS: use \02A6 in content (not an HTML entity). #point::after appends ʦ.

4. Typed: paste ʦ in a UTF-8 document, or write [ka&#x02A6;] for a transcription example.

5. Named: there is none — always use a numeric reference or CSS escape.

Pitfalls & Tips

Common mistakes when working with Ts Digraph.

Named

No named entity

HTML5 does not define &tsdigraph; or similar. Use &#x02A6; or &#678;.

Look-alikes

ʦ ≠ ʧ ≠ ʨ ≠ ts

U+02A6 is one digraph character. Do not fake it with ASCII ts. Adjacent IPA letters ʧ and ʨ are different glyphs.

A11y

Add context

A lone ʦ may be unclear. Pair it with wording such as “ts digraph” or an accessible name for screen readers.

Fonts

IPA coverage

IPA Extensions coverage varies. Prefer IPA-capable fonts (e.g. Doulos SIL, Charis SIL) and test on mobile.

CSS vs HTML

Do not mix escapes

\02A6 belongs in CSS. &#x02A6; / &#678; belong in HTML.

Charset

Use UTF-8

Always set charset="UTF-8" so typed ʦ and numeric entities decode correctly.

Browser Support

Ts Digraph (U+02A6) and its entity forms (&#x02A6;, &#678;, CSS \\02A6) are supported in all modern browsers. Glyph coverage depends on an IPA-capable font.

✓ Universal encoding

Ts Digraph (&#x02A6;)

Encode with hex, decimal, or CSS escape — or type ʦ directly in UTF-8 HTML. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+02A6 Full support

Bottom line: Prefer &#x02A6; for readable HTML. Use \\02A6 only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: this symbol is U+02A6 (decimal 678) — latin small letter ts digraph.
  • HTML: prefer &#x02A6; — or use &#678;. No named entity.
  • CSS: use \02A6 inside content for generated IPA markers.
  • Watch out: not the same as tesh (ʧ), tc curl (ʨ), or ASCII ts.

One line: U+02A6 → &#x02A6; / &#678; / CSS \02A6 (no named entity).

Frequently Asked Questions

Use &#x02A6; (hex), &#678; (decimal), or the CSS escape \02A6 in the content property. All render ʦ when the font supports IPA Extensions. There is no named HTML entity.
U+02A6 (LATIN SMALL LETTER TS DIGRAPH). Hex 02A6, decimal 678. It belongs to IPA Extensions (U+0250–U+02AF) and represents a voiceless alveolar affricate in IPA.
No. HTML5 does not define a named entity for U+02A6. Use numeric references like &#x02A6; or &#678;.
Use it for phonetic transcriptions, linguistics pages, language teaching, and IPA notation that needs the ts digraph glyph. Prefer an IPA-capable font.
U+02A6 is LATIN SMALL LETTER TS DIGRAPH. U+02A7 is LATIN SMALL LETTER TESH DIGRAPH. U+02A8 is LATIN SMALL LETTER TC DIGRAPH WITH CURL. Adjacent IPA letters with different values.
HTML entities (&#678; or &#x02A6;) go in markup. The CSS escape \02A6 is used in stylesheets (usually in the content property of ::before/::after). Both render ʦ.

Did you know?

Ts Digraph is Unicode U+02A6 (decimal 678) — glyph ʦ (LATIN SMALL LETTER TS DIGRAPH) in IPA Extensions. HTML5 has no named entity — use &#x02A6; or &#678;. It represents a voiceless alveolar affricate in IPA (as in the “ts” of cats). Do not confuse it with tesh digraph (U+02A7) or tc digraph with curl (U+02A8).

Next: Tugrik Sign

Learn the HTML entity for Tugrik Sign — next in this sequence.

Continue tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful