HTML Entity for Te Digraph Curl (ʨ)

What You'll Learn
How to display the Te Digraph Curl symbol (ʨ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+02A8 (LATIN SMALL LETTER TC DIGRAPH WITH CURL) in the IPA Extensions block (U+0250–U+02AF)—a phonetic digraph used in linguistic notation and IPA transcriptions.
Render it with ʨ, ʨ, or CSS escape \02A8. There is no named HTML entity. Do not confuse ʨ with ʧ (ts digraph, U+02A7) or ʩ (ts digraph with curl, U+02A9)—adjacent IPA Extension letters with different values.
⚡ Quick Reference — Te Digraph Curl
U+02A8IPA Extensions
ʨHexadecimal reference
ʨDecimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+02A8
Hex code ʨ
HTML code ʨ
Named entity (none)
CSS code \02A8
Block IPA Extensions (U+0250–U+02AF)
Official name LATIN SMALL LETTER TC DIGRAPH WITH CURLComplete HTML Example
This example demonstrates the Te Digraph Curl symbol (ʨ) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\02A8";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ʨ</p>
<p>Using HTML Code: ʨ</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Te Digraph Curl symbol renders in modern browsers when fonts include IPA Extensions glyphs:
👀 Live Preview
See the Te Digraph Curl symbol (ʨ) in phonetic context:
🧠 How It Works
Hexadecimal Code
ʨ uses the Unicode hexadecimal value 02A8 to display the Te Digraph Curl symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʨ uses the decimal Unicode value 680 to display the same character.
CSS Entity
\02A8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ʨ. Unicode U+02A8 in the IPA Extensions block (U+0250–U+02AF). No named entity.
Use Cases
The Te Digraph Curl symbol (ʨ) commonly appears in:
Research papers and language analysis documentation.
Speech analysis and phonetics textbooks.
Language learning materials and pronunciation guides.
International Phonetic Alphabet transcriptions.
Scholarly articles on phonetic and linguistic topics.
Pronunciation tools and interactive language content.
Online dictionaries and pronunciation resources.
💡 Best Practices
Do
- Use
ʨorʨ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 ʧ (ts digraph) or ʩ (ts digraph with curl)
- Assume every font includes IPA Extensions characters
- Put CSS escape
\02A8directly in HTML text nodes - Expect a named HTML entity for U+02A8—use numeric references
- Use HTML entities in JS (use
\u02A8instead)
Key Takeaways
Two HTML references both render ʨ
ʨ ʨFor CSS stylesheets, use the escape in the content property
\02A8Unicode U+02A8 — LATIN SMALL LETTER TC DIGRAPH WITH CURL
No named entity—use numeric references or CSS escape
Part of IPA Extensions (U+0250–U+02AF) for phonetic notation
❓ Frequently Asked Questions
ʨ (hex), ʨ (decimal), or \02A8 in CSS content. There is no named HTML entity. All three produce ʨ.U+02A8 (LATIN SMALL LETTER TC DIGRAPH WITH CURL). IPA Extensions block (U+0250–U+02AF). Hex 02A8, decimal 680.ʨ or ʨ) go directly in markup. The CSS escape \02A8 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — IPA, linguistics, math, and more.
8 people found this page helpful
