HTML Entity for Lowercase D Topbar (ƌ)

What You'll Learn
How to display the lowercase d with topbar (ƌ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is the Latin small letter d with topbar, used in some Sámi and other linguistic orthographies, as well as certain African language writing systems. It is U+018C in the Latin Extended-B block.
Render it with ƌ, ƌ, or CSS escape \018C. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase D Topbar Entity
U+018CLatin Extended-B
ƌHexadecimal reference
ƌDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+018C
Hex code ƌ
HTML code ƌ
Named entity (none)
CSS code \018C
Meaning Latin small letter d with topbar
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase d topbar (ƌ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\018C";
}
</style>
</head>
<body>
<p>Symbol (hex): ƌ</p>
<p>Symbol (decimal): ƌ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase d topbar (ƌ) renders correctly in modern browsers when UTF-8 is used and a font with Latin Extended-B support is available:
👀 Live Preview
See the lowercase d topbar (ƌ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
ƌ uses the Unicode hexadecimal value 018C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƌ uses the decimal Unicode value 396 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\018C 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+018C sits in Latin Extended-B. Do not confuse ƌ with plain d (U+0064) or ɖ (d tail, U+0256). There is no named HTML entity.
Use Cases
The lowercase d topbar (ƌ) is commonly used in:
Display correct spelling in Sámi and other orthographies that use the d with topbar.
Represent the letter ƌ in Sámi language resources and Northern European linguistic materials.
Support writing systems that include the d with topbar in standardized orthographies.
Show correct characters in language courses and textbooks that use this letter.
Ensure proper typography in papers and publications with Sámi or related script.
Showcase Latin Extended-B coverage in font demos and type design.
Support proper rendering for languages that use the d with topbar.
💡 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
- Use fonts that support Latin Extended-B characters
- Set appropriate
langattributes on content using this character - Distinguish ƌ from plain
d, ɖ (d tail), and đ (d stroke)
Don’t
- Assume a named entity exists—there is none for ƌ
- Substitute plain
dwhen ƌ is required for orthographic accuracy - Confuse ƌ (topbar) with other accented d variants
- Put CSS escape
\018Cin HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
Key Takeaways
Three references render ƌ (no named entity)
ƌ ƌFor CSS stylesheets, use the escape in the content property
\018CUnicode U+018C — LATIN SMALL LETTER D WITH TOPBAR
Used in Sámi, African orthographies, and extended Latin linguistic content
Previous: Lowercase D Tail (ɖ) Next: Lowercase Dz Caron
❓ Frequently Asked Questions
ƌ (hex), ƌ (decimal), or \018C in CSS content. There is no named HTML entity; use numeric codes or CSS.U+018C (LATIN SMALL LETTER D WITH TOPBAR). Latin Extended-B block. Hex 018C, decimal 396. Used in Sámi and other linguistic orthographies.ƌ or ƌ) is used in HTML content. The CSS entity (\018C) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ƌ but in different contexts.ƌ or ƌ in HTML, or \018C in CSS. This is standard for Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin letters, symbols, and more.
8 people found this page helpful
