HTML Entity for Dz Curl (ʥ)

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

What You'll Learn

How to display the Dz Curl (ʥ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+02A5 (LATIN SMALL LETTER DZ DIGRAPH WITH CURL) in the IPA Extensions block (U+0250–U+02AF)—used in the International Phonetic Alphabet for the voiced postalveolar affricate (as in “jump” or “judge”).

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

⚡ Quick Reference — Dz Curl

Unicode U+02A5

IPA Extensions block

Hex Code ʥ

Hexadecimal reference

HTML Code ʥ

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

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

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

🌐 Browser Support

U+02A5 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 Curl (ʥ) in phonetic and linguistic contexts:

Large glyph ʥ
IPA example [dʥ] jump
vs Dz digraph ʥ curl   ʣ digraph
Dictionary judge /dʥʌdʒ/
Numeric refs &#x02A5; &#677;

🧠 How It Works

1

Hexadecimal Code

&#x02A5; uses the Unicode hexadecimal value 02A5 to display the Dz Curl. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Dz Curl (ʥ) is commonly used in:

🔤 IPA transcription

Represent the voiced 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 &#x02A5; or &#677; 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 voiced 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+02A5
  • Confuse ʥ (Dz curl) with ʣ (Dz digraph) or ʤ (Dezh)
  • Put CSS escape \02A5 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 ʥ

&#x02A5; &#677;
2

For CSS stylesheets, use the escape in the content property

\02A5
3

Unicode U+02A5 — LATIN SMALL LETTER DZ DIGRAPH WITH CURL

4

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

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x02A5; (hex), &#677; (decimal), or \02A5 in CSS content. There is no named entity. All produce ʥ.
U+02A5 (LATIN SMALL LETTER DZ DIGRAPH WITH CURL). IPA Extensions block (U+0250–U+02AF). Hex 02A5, decimal 677. Used in IPA for the voiced postalveolar affricate.
In phonetic and IPA transcription, linguistic documentation, academic phonology papers, dictionaries, language learning content, and any text that requires the voiced postalveolar affricate symbol.
HTML references (&#677; or &#x02A5;) go in markup. The CSS escape \02A5 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+02A5 have no named entity—use &#x02A5; or &#677; 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