HTML Entity for Uppercase D African (Ɖ)

What You'll Learn
How to display the uppercase D African (Ɖ) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER African D, this character is used in African language documentation, linguistic contexts, and specialized orthographies such as Hausa and Fula. It is U+0189 in the Latin Extended-B block.
Render it with Ɖ, Ɖ, or CSS escape \0189. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase D African Entity
U+0189Latin Extended-B
ƉHexadecimal reference
ƉDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0189
Hex code Ɖ
HTML code Ɖ
Named entity (none)
CSS code \0189
Meaning Latin capital letter African D
Related U+0257 = lowercase (ɗ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase D African (Ɖ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0189";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɖ</p>
<p>Symbol (decimal): Ɖ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase D African (Ɖ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase D African (Ɖ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ɖ uses the Unicode hexadecimal value 0189 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɖ uses the decimal Unicode value 393 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0189 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+0189 sits in Latin Extended-B. Lowercase equivalent: U+0257 (ɗ). Do not confuse Ɖ with plain D (U+0044). There is no named HTML entity.
Use Cases
The uppercase D African (Ɖ) is commonly used in:
African language websites, documents, and content requiring proper extended Latin alphabet characters.
Phonetic transcriptions, language research, and linguistic atlases using Ɖ.
Orthographies and content for Hausa, Fula, and related African language writing systems.
Scholarly papers, research documents, and academic publications on African languages.
Language documentation projects, Unicode references, and character encoding guides.
International content and localization projects supporting African languages.
Font design, character set documentation, and typographic projects with extended Latin.
💡 Best Practices
Do
- Use
ƉorƉin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Ɖ directly in UTF-8 source
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ɖ from plain
D(U+0044) and other extended D variants
Don’t
- Assume a named entity exists—there is none for Ɖ
- Substitute plain
Dwhen Ɖ is required for orthographic accuracy - Put CSS escape
\0189in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Three references render Ɖ (no named entity)
Ɖ ƉFor CSS stylesheets, use the escape in the content property
\0189Unicode U+0189 — LATIN CAPITAL LETTER African D
Used in African language content, linguistic documentation, and typography
Previous: Uppercase D Next: Uppercase D Caron (Ď)
❓ Frequently Asked Questions
Ɖ (hex), Ɖ (decimal), or \0189 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0189 (LATIN CAPITAL LETTER African D). Latin Extended-B block. Hex 0189, decimal 393. Used in African language content and linguistic documentation.Ɖ or Ɖ) is used in HTML content. The CSS entity (\0189) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ɖ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, phonetic symbols, and more.
8 people found this page helpful
