HTML Entity for Uppercase D Stroke (Đ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0110

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

Unicode U+0110

Latin Extended-A

Hex Code Đ

Hexadecimal reference

HTML Code Đ

Decimal reference

Named Entity Đ

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0110";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0110;</p>
<p>Symbol (decimal): &#272;</p>
<p>Symbol (named): &Dstrok;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase D with stroke (Đ) and the named entity &Dstrok; are supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase D with stroke (Đ) in language and content contexts:

Large glyphĐ
VietnameseĐà Nẵng, Đồng Nai
Croatian & SerbianĐakovo, Đurđević
Named entity&Dstrok; renders as Đ
Not the same asÐ (eth) or plain D (U+0044)
Numeric refs&#x0110; &#272; &Dstrok; \0110

🧠 How It Works

1

Hexadecimal Code

&#x0110; uses the Unicode hexadecimal value 0110 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#272; uses the decimal Unicode value 272 to display the same character. A common method for Latin Extended-A characters.

HTML markup
3

Named Entity

&Dstrok; is the standard named entity for Đ—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\0110 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Đ. Unicode U+0110 sits in Latin Extended-A. Lowercase equivalent: U+0111 (&dstrok;). Do not confuse Đ (D stroke) with Ð (eth) or plain D (U+0044).

Use Cases

The uppercase D with stroke (Đ) is commonly used in:

🇻🇳 Vietnamese

Place names and words such as Đà Nẵng and Đồng Nai in Vietnamese-language content.

🇭🇷 Croatian

Croatian websites, documents, and proper names requiring Đ in the Latin alphabet.

🇷🇺 Serbian

Serbian Latin-script content, surnames, and localized text using Đ.

🌐 Multilingual sites

International websites and localization projects supporting European and Southeast Asian languages.

📝 Proper names

Personal names, place names, and brands that include Đ.

📄 Academic publishing

Scholarly papers, dictionaries, and linguistic publications.

🔍 Search & SEO

Correct rendering so users can find content with proper accented spelling.

💡 Best Practices

Do

  • Use &Dstrok; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Đ directly in UTF-8 source
  • Set lang attributes (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 D when Đ is required for correct spelling
  • Confuse Đ (D stroke) with Ð (eth) or other D variants
  • Put CSS escape \0110 in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Đ; named entity is most readable

&#x0110; &#272; &Dstrok;
2

For CSS stylesheets, use the escape in the content property

\0110
3

Unicode U+0110 — LATIN CAPITAL LETTER D WITH STROKE

4

Essential for Croatian, Serbian, Vietnamese, and i18n content

❓ Frequently Asked Questions

Use &Dstrok; (named), &#x0110; (hex), &#272; (decimal), or \0110 in CSS content. The named entity &Dstrok; 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.
When writing Croatian, Serbian, Vietnamese, or Sámi content, proper names, dictionary entries, multilingual websites, and any text requiring the uppercase D with stroke.
HTML code (&#272; or &#x0110;) or the named entity &Dstrok; 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.
Yes. The named HTML entity is &Dstrok;. It is part of the HTML5 entity set and is well supported. You can also use &#272; or &#x0110; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful