HTML Entity for Dz Digraph (ʣ)

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

What You'll Learn

How to display the Dz Digraph (ʣ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+02A3 (LATIN SMALL LETTER DZ DIGRAPH) in the IPA Extensions block (U+0250–U+02AF)—used in the International Phonetic Alphabet for the voiceless postalveolar affricate (as in “cats” or “pizza” in some pronunciations).

Render it with ʣ, ʣ, or CSS escape \02A3. There is no named HTML entity for this symbol. Compare ʥ (Dz curl, U+02A5) or ʤ (Dezh digraph) when you need a related IPA glyph.

⚡ Quick Reference — Dz Digraph

Unicode U+02A3

IPA Extensions block

Hex Code ʣ

Hexadecimal reference

HTML Code ʣ

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+02A3
Hex code       ʣ
HTML code      ʣ
Named entity   (none)
CSS code       \02A3
Related        U+02A5 = Dz curl (ʥ); U+02A4 = Dezh digraph (ʤ)
1

Complete HTML Example

This example demonstrates the Dz Digraph (ʣ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\02A3";
  }
 </style>
</head>
<body>
<p>Dz Digraph using Hexadecimal: &#x02A3;</p>
<p>Dz Digraph using HTML Code: &#675;</p>
<p id="point">Dz Digraph using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+02A3 is supported in modern browsers when rendered with a font that includes IPA Extensions (e.g. system UI, Doulos SIL, Charis SIL):

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

👀 Live Preview

See the Dz Digraph (ʣ) in phonetic and linguistic contexts:

Large glyph ʣ
IPA example [tʣ] cats
vs Dz curl ʣ digraph   ʥ curl
Dictionary pizza /ʣiʣə/
Numeric refs &#x02A3; &#675;

🧠 How It Works

1

Hexadecimal Code

&#x02A3; uses the Unicode hexadecimal value 02A3 to display the Dz Digraph. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\02A3 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: ʣ. Unicode U+02A3. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Dz Digraph (ʣ) is commonly used in:

🔤 IPA transcription

Represent the voiceless postalveolar affricate in International Phonetic Alphabet notation.

📄 Linguistic docs

Papers, dictionaries, and language descriptions for phonetic symbols.

🎓 Academic research

Phonology, phonetics, and language acquisition papers and textbooks.

📚 Dictionaries

Pronunciation guides and lexical databases with IPA notation.

🏫 Language learning

Teach pronunciation and IPA in language learning apps and sites.

🔬 Speech therapy

Clinical or educational materials that include phonetic notation.

💡 Best Practices

Do

  • Use &#x02A3; or &#675; consistently in markup
  • Use fonts that support IPA Extensions (e.g. Doulos SIL, Charis SIL, system UI)
  • Add aria-label with phonetic meaning (e.g. “IPA voiceless postalveolar affricate”)
  • Pair ʣ with a sound example or gloss in linguistic content
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+02A3
  • Confuse ʣ (Dz digraph) with ʥ (Dz curl) or ʤ (Dezh)
  • Put CSS escape \02A3 in HTML text nodes
  • Rely on the symbol alone without phonetic context for learners
  • Assume all fonts render IPA glyphs identically

Key Takeaways

1

Two HTML numeric references render ʣ

&#x02A3; &#675;
2

For CSS stylesheets, use the escape in the content property

\02A3
3

Unicode U+02A3 — LATIN SMALL LETTER DZ DIGRAPH

4

IPA Extensions block (U+0250–U+02AF)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x02A3; (hex), &#675; (decimal), or \02A3 in CSS content. There is no named entity. All produce ʣ.
U+02A3 (LATIN SMALL LETTER DZ DIGRAPH). IPA Extensions block (U+0250–U+02AF). Hex 02A3, decimal 675. Used in IPA for the voiceless postalveolar affricate.
In phonetic and IPA transcription, linguistic documentation, academic phonology papers, dictionaries, language learning content, and any text that requires the voiceless postalveolar affricate symbol.
HTML references (&#675; or &#x02A3;) go in markup. The CSS escape \02A3 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many IPA Extensions characters including U+02A3 have no named entity—use &#x02A3; or &#675; in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA symbols, phonetics, math operators, 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