HTML Entity for Uppercase D Topbar (Ƌ)

What You'll Learn
How to display the uppercase D with topbar (Ƌ) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER D WITH TOPBAR, this character is used in linguistic documentation, Sámi orthography, typography projects, and specialized character sets. It is U+018B in the Latin Extended-B block.
Render it with Ƌ, Ƌ, or CSS escape \018B. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase D Topbar Entity
U+018BLatin Extended-B
ƋHexadecimal reference
ƋDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+018B
Hex code Ƌ
HTML code Ƌ
Named entity (none)
CSS code \018B
Meaning Latin capital letter D with topbar
Related U+018C = lowercase (ƌ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase D with topbar (Ƌ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\018B";
}
</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 topbar (Ƌ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase D with topbar (Ƌ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ƌ uses the Unicode hexadecimal value 018B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƌ uses the decimal Unicode value 395 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\018B 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+018B sits in Latin Extended-B. Lowercase equivalent: U+018C (ƌ). Do not confuse Ƌ with Ɗ (D hook) or plain D (U+0044). There is no named HTML entity.
Use Cases
The uppercase D with topbar (Ƌ) is commonly used in:
Linguistic documentation, phonetic transcriptions, and language research using Ƌ.
Sámi orthographies and content requiring the D with topbar in extended Latin script.
Unicode guides, encoding documentation, and typography resources cataloging special characters.
Font design, character set documentation, and typographic projects with extended Latin.
Scholarly papers, linguistic atlases, and academic publications on language and script.
International content and localization projects supporting specialized orthographies.
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 Ɗ (D hook), 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 - Confuse Ƌ (D topbar) with Ɗ (D hook) or other D variants
- Put CSS escape
\018Bin 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
\018BUnicode U+018B — LATIN CAPITAL LETTER D WITH TOPBAR
Used in linguistic content, Sámi orthography, and typography
Previous: Uppercase D Stroke (Đ) Next: Uppercase Dz
❓ Frequently Asked Questions
Ƌ (hex), Ƌ (decimal), or \018B in CSS content. There is no named HTML entity; use numeric codes or CSS.U+018B (LATIN CAPITAL LETTER D WITH TOPBAR). Latin Extended-B block. Hex 018B, decimal 395. Used in linguistic content and specialized character sets.Ƌ or Ƌ) is used in HTML content. The CSS entity (\018B) 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
