HTML Entity for Ts Digraph (ʦ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+02A6

What You'll Learn

How to display the Ts digraph symbol (ʦ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+02A6 (LATIN SMALL LETTER TS DIGRAPH) in the IPA Extensions block (U+0250–U+02AF)—a phonetic digraph representing the voiceless alveolar affricate (as in the “ts” in cats).

Render it with ʦ, ʦ, or CSS escape \02A6. There is no named HTML entity. Do not confuse ʦ with ʧ (tesh digraph, U+02A7) or ʨ (tc digraph with curl, U+02A8)—adjacent IPA Extension letters with different values.

⚡ Quick Reference — Ts Digraph

Unicode U+02A6

IPA Extensions

Hex Code ʦ

Hexadecimal reference

HTML Code ʦ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+02A6
Hex code       ʦ
HTML code      ʦ
Named entity   (none)
CSS code       \02A6
Block          IPA Extensions (U+0250–U+02AF)
Official name  LATIN SMALL LETTER TS DIGRAPH
1

Complete HTML Example

This example demonstrates the Ts digraph symbol (ʦ) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\02A6";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x02A6;</p>
<p>Using HTML Code: &#678;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Ts digraph symbol renders in modern browsers when fonts include IPA Extensions glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Ts digraph symbol (ʦ) in phonetic context:

IPA context [kaʦ] — phonetic transcription example
Large glyph ʦ
Nearby IPA ʦ ts digraph   ʧ tesh   ʨ tc curl
Numeric refs &#x02A6; &#678; \02A6

🧠 How It Works

1

Hexadecimal Code

&#x02A6; uses the Unicode hexadecimal value 02A6 to display the Ts digraph symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#678; uses the decimal Unicode value 678 to display the same character.

HTML markup
3

CSS Entity

\02A6 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ʦ. Unicode U+02A6 in the IPA Extensions block (U+0250–U+02AF). No named entity. Previous: True. Next: Tugrik Sign.

Use Cases

The Ts digraph symbol (ʦ) commonly appears in:

📚 Linguistics

Research papers and language analysis documentation.

💬 Phonetics

Speech analysis and phonetics textbooks.

🎓 Language Studies

Language learning materials and pronunciation guides.

📝 IPA Notation

International Phonetic Alphabet transcriptions.

📄 Academic Writing

Scholarly articles on phonetic and linguistic topics.

📱 Language Apps

Pronunciation tools and interactive language content.

📖 Dictionaries

Online dictionaries and pronunciation resources.

💡 Best Practices

Do

  • Use &#x02A6; or &#678; for the digraph glyph
  • Choose IPA-capable fonts (e.g. Doulos SIL, Charis SIL) for reliable rendering
  • Set charset="UTF-8" on all HTML documents
  • Add glosses or tooltips explaining the phonetic value
  • Test across browsers and devices without IPA font support

Don’t

  • Confuse ʦ with ʧ (tesh digraph) or ʨ (tc digraph with curl)
  • Assume every font includes IPA Extensions characters
  • Put CSS escape \02A6 directly in HTML text nodes
  • Expect a named HTML entity for U+02A6—use numeric references
  • Use HTML entities in JS (use \u02A6 instead)

Key Takeaways

1

Two HTML references both render ʦ

&#x02A6; &#678;
2

For CSS stylesheets, use the escape in the content property

\02A6
3

Unicode U+02A6 — LATIN SMALL LETTER TS DIGRAPH

4

No named entity—use numeric references or CSS escape

5

Part of IPA Extensions (U+0250–U+02AF) for phonetic notation

❓ Frequently Asked Questions

Use &#x02A6; (hex), &#678; (decimal), or \02A6 in CSS content. There is no named HTML entity. All three produce ʦ.
U+02A6 (LATIN SMALL LETTER TS DIGRAPH). IPA Extensions block (U+0250–U+02AF). Hex 02A6, decimal 678. Represents a voiceless alveolar affricate in IPA.
In linguistics, phonetics, language studies, IPA notation, academic writing, language learning apps, and dictionary pronunciation guides that require phonetic transcription.
HTML numeric references (&#678; or &#x02A6;) go directly in markup. The CSS escape \02A6 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ʦ in the IPA Extensions block use numeric hex or decimal references—standard practice for phonetic and linguistic characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA, linguistics, math, and more.

All HTML Entities →

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