HTML Entity for Lowercase D Tail (ɖ)

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

What You'll Learn

How to display the lowercase d with tail (ɖ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is the Latin small letter d with tail, used in the International Phonetic Alphabet (IPA) for the voiced retroflex plosive and in African language orthographies such as Ewe and Fon. It is U+0256 in the IPA Extensions block.

Render it with ɖ, ɖ, or CSS escape \0256. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase D Tail Entity

Unicode U+0256

IPA Extensions

Hex Code ɖ

Hexadecimal reference

HTML Code ɖ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0256
Hex code       ɖ
HTML code      ɖ
Named entity   (none)
CSS code       \0256
Meaning        Latin small letter d with tail
IPA usage      Voiced retroflex plosive
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase d tail (ɖ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0256";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0256;</p>
<p>Symbol (decimal): &#598;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase d tail (ɖ) renders correctly in modern browsers when UTF-8 is used and a font with IPA Extensions support is available:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase d tail (ɖ) and how it differs from related characters:

Large glyphɖ
IPA meaningVoiced retroflex plosive
Not the same asd (plain d), ɗ (d hook), or đ (d stroke)
Unicode blockIPA Extensions (U+0250–U+02AF)
Numeric refs&#x0256; &#598; \0256

🧠 How It Works

1

Hexadecimal Code

&#x0256; uses the Unicode hexadecimal value 0256 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#598; uses the decimal Unicode value 598 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

\0256 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+0256 sits in IPA Extensions. Do not confuse ɖ with plain d (U+0064) or ɗ (d hook, U+0257). There is no named HTML entity.

Use Cases

The lowercase d tail (ɖ) is commonly used in:

🔤 IPA & phonetics

Display IPA symbols in language and phonetics articles (e.g. ɖ for voiced retroflex plosive).

🌍 African languages

Correct spelling in Ewe, Fon, and other African language orthographies that use ɖ.

📖 Pronunciation guides

Show phonetic transcriptions and pronunciation keys in dictionaries and language resources.

📚 Academic papers

Represent phonetic transcriptions in linguistics and language research publications.

🌐 Language learning

Display correct characters in language courses and pronunciation guides for African languages.

🎨 Typography

Showcase IPA Extensions coverage in font demos and type design.

📧 Internationalization

Support proper rendering for African and other languages that use the d with tail.

💡 Best Practices

Do

  • Use &#598; or &#x0256; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ɖ directly in UTF-8 source
  • Use IPA-aware or Unicode-complete fonts for reliable glyph rendering
  • Provide context (e.g. IPA notation) when using phonetic symbols
  • Distinguish ɖ from plain d, ɗ (d hook), and đ (d stroke)

Don’t

  • Assume a named entity exists—there is none for ɖ
  • Substitute plain d when ɖ is required for phonetic or orthographic accuracy
  • Confuse ɖ (tail) with ɗ (hook) or other accented d variants
  • Put CSS escape \0256 in HTML text nodes
  • Assume all fonts render IPA Extensions glyphs identically

Key Takeaways

1

Three references render ɖ (no named entity)

&#x0256; &#598;
2

For CSS stylesheets, use the escape in the content property

\0256
3

Unicode U+0256 — LATIN SMALL LETTER D WITH TAIL

4

IPA voiced retroflex plosive; used in Ewe, Fon, and African orthographies

❓ Frequently Asked Questions

Use &#x0256; (hex), &#598; (decimal), or \0256 in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+0256 (LATIN SMALL LETTER D WITH TAIL). IPA Extensions block. Hex 0256, decimal 598. Used in IPA for the voiced retroflex plosive and in Ewe, Fon, and other African language orthographies.
For IPA phonetic transcription, African language content (e.g. Ewe, Fon), linguistic and phonetic resources, dictionary and pronunciation guides, and any text requiring the voiced retroflex plosive symbol.
HTML code (&#598; or &#x0256;) is used in HTML content. The CSS entity (\0256) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ɖ but in different contexts.
No. Named HTML entities do not include IPA characters like ɖ. Use &#598; or &#x0256; in HTML, or \0256 in CSS. This is standard for phonetic and extended Latin characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — IPA symbols, accented letters, 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