HTML Entity for Uppercase D Hook (Ɗ)

What You'll Learn
How to display the uppercase D with hook (Ɗ) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER D WITH HOOK, this character is used in linguistic documentation, phonetic transcriptions, and specialized orthographies such as Hausa and Fula. It is U+018A in the Latin Extended-B block.
Render it with Ɗ, Ɗ, or CSS escape \018A. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase D Hook Entity
U+018ALatin Extended-B
ƊHexadecimal reference
ƊDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+018A
Hex code Ɗ
HTML code Ɗ
Named entity (none)
CSS code \018A
Meaning Latin capital letter D with hook
Related U+0257 = lowercase (ɗ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase D with hook (Ɗ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\018A";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɗ</p>
<p>Symbol (decimal): Ɗ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase D with hook (Ɗ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase D with hook (Ɗ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ɗ uses the Unicode hexadecimal value 018A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɗ uses the decimal Unicode value 394 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\018A 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+018A sits in Latin Extended-B. Lowercase equivalent: U+0257 (ɗ). Do not confuse Ɗ with Ɖ (African D) or plain D (U+0044). There is no named HTML entity.
Use Cases
The uppercase D with hook (Ɗ) is commonly used in:
Linguistic documentation, language research, and materials requiring hook consonants such as Ɗ.
Phonetic notation, pronunciation guides, and IPA-related content with extended Latin letters.
Orthographies and content for Hausa, Fula, and related African language writing systems.
Scholarly papers, research documents, and academic publications on linguistics and language.
Language atlases, Unicode references, and character encoding guides.
Font design, character set documentation, and typographic projects with extended Latin.
Correct rendering so users can find content with proper specialized spelling.
💡 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), Ɖ (African D), 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
\018Ain 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
\018AUnicode U+018A — LATIN CAPITAL LETTER D WITH HOOK
Used in linguistic content, phonetic transcriptions, and typography
Previous: Uppercase D Caron (Ď) Next: Uppercase D Strike (Ð)
❓ Frequently Asked Questions
Ɗ (hex), Ɗ (decimal), or \018A in CSS content. There is no named HTML entity; use numeric codes or CSS.U+018A (LATIN CAPITAL LETTER D WITH HOOK). Latin Extended-B block. Hex 018A, decimal 394. Used in linguistic content and phonetic transcriptions.Ɗ or Ɗ) is used in HTML content. The CSS entity (\018A) 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
