HTML Entity for Uppercase D Stroke (Đ)

What You'll Learn
How to display the uppercase D with stroke (Đ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER D WITH STROKE, this character is essential for Croatian, Serbian, Vietnamese, and Sámi. It is U+0110 in the Latin Extended-A block.
Render it with Đ, Đ, Đ, or CSS escape \0110. The named entity Đ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase D Stroke Entity
U+0110Latin Extended-A
ĐHexadecimal reference
ĐDecimal reference
ĐMost readable option
Name Value
──────────── ──────────
Unicode U+0110
Hex code Đ
HTML code Đ
Named entity Đ
CSS code \0110
Meaning Latin capital letter D with stroke
Related U+0111 = đ (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase D with stroke (Đ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0110";
}
</style>
</head>
<body>
<p>Symbol (hex): Đ</p>
<p>Symbol (decimal): Đ</p>
<p>Symbol (named): Đ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase D with stroke (Đ) and the named entity Đ are supported in all modern browsers:
👀 Live Preview
See the uppercase D with stroke (Đ) in language and content contexts:
D (U+0044)🧠 How It Works
Hexadecimal Code
Đ uses the Unicode hexadecimal value 0110 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Đ uses the decimal Unicode value 272 to display the same character. A common method for Latin Extended-A characters.
Named Entity
Đ is the standard named entity for Đ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\0110 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Đ. Unicode U+0110 sits in Latin Extended-A. Lowercase equivalent: U+0111 (đ). Do not confuse Đ (D stroke) with Ð (eth) or plain D (U+0044).
Use Cases
The uppercase D with stroke (Đ) is commonly used in:
Place names and words such as Đà Nẵng and Đồng Nai in Vietnamese-language content.
Croatian websites, documents, and proper names requiring Đ in the Latin alphabet.
Serbian Latin-script content, surnames, and localized text using Đ.
International websites and localization projects supporting European and Southeast Asian languages.
Personal names, place names, and brands that include Đ.
Scholarly papers, dictionaries, and linguistic publications.
Correct rendering so users can find content with proper accented spelling.
💡 Best Practices
Do
- Use
Đin HTML when possible for readability - Serve pages as UTF-8; you can also type Đ directly in UTF-8 source
- Set
langattributes (e.g.lang="vi",lang="hr",lang="sr") for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish Đ (D stroke, U+0110) from Ð (eth) and plain
D(U+0044)
Don’t
- Substitute plain
Dwhen Đ is required for correct spelling - Confuse Đ (D stroke) with Ð (eth) or other D variants
- Put CSS escape
\0110in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Đ; named entity is most readable
Đ Đ ĐFor CSS stylesheets, use the escape in the content property
\0110Unicode U+0110 — LATIN CAPITAL LETTER D WITH STROKE
Essential for Croatian, Serbian, Vietnamese, and i18n content
Previous: Uppercase D Strike (Ð) Next: Uppercase D Topbar (Ƌ)
❓ Frequently Asked Questions
Đ (named), Đ (hex), Đ (decimal), or \0110 in CSS content. The named entity Đ is the most readable for HTML content.U+0110 (LATIN CAPITAL LETTER D WITH STROKE). Latin Extended-A block. Hex 0110, decimal 272. Used in Croatian, Serbian, Vietnamese, and other languages.Đ or Đ) or the named entity Đ is used in HTML content. The CSS entity (\0110) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Đ but in different contexts.Đ. It is part of the HTML5 entity set and is well supported. You can also use Đ or Đ for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
