HTML Entity for Lowercase D Stroke (đ)

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

What You'll Learn

How to display the lowercase d with stroke (đ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Vietnamese (where đ is a distinct letter in the alphabet), Croatian and Serbian Latin script, Sámi, and other languages using Latin Extended-A characters. It appears in words such as đi, đẹp, and đường. It is U+0111 in the Latin Extended-A block.

Render it with đ, đ, đ, or CSS escape \0111. The named entity đ is often the most readable option in HTML source.

⚡ Quick Reference — Lowercase D Stroke Entity

Unicode U+0111

Latin Extended-A

Hex Code đ

Hexadecimal reference

HTML Code đ

Decimal reference

Named Entity đ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0111
Hex code       đ
HTML code      đ
Named entity   đ
CSS code       \0111
Meaning        Latin small letter d with stroke
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the lowercase d stroke (đ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

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

🌐 Browser Support

The lowercase d 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 lowercase d stroke (đ) in Vietnamese, South Slavic, and multilingual contexts:

Large glyphđ
Vietnamese examplesđi, đẹp, đường
Named entity&dstrok; renders as đ
Not the same asplain d (U+0064) or ď (d with caron)
Numeric refs&#x0111; &#273; &dstrok; \0111

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#273; uses the decimal Unicode value 273 to display the same character. One of the most commonly used methods in HTML.

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

\0111 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+0111 sits in Latin Extended-A. Do not confuse đ with plain d (U+0064) or ď (d with caron, U+010F).

Use Cases

The lowercase d stroke (đ) is commonly used in:

🇻🇳 Vietnamese content

Correct spelling in Vietnamese text, where đ is a standard letter (e.g. đi, đẹp).

🇭🇷 Croatian & Serbian

Represent the letter đ in Croatian and Serbian Latin orthography and language resources.

🇪🇺 Sámi content

Display correct characters in Sámi language content and Northern European linguistic materials.

📚 Language learning

Pronunciation guides, dictionaries, and Vietnamese or South Slavic language courses with correct characters.

📄 Academic publishing

Ensure proper typography in papers and publications with Vietnamese or South Slavic script.

🎨 Typography

Showcase Latin Extended-A coverage in font demos and type design.

🌐 Internationalization

Support proper rendering for international audiences using Latin Extended-A characters.

💡 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="vi", lang="hr", or lang="sr" on content for correct language handling
  • Use fonts that support Latin Extended-A characters
  • Distinguish đ (stroke) from plain d (U+0064) and ď (d caron)

Don’t

  • Substitute plain d when đ is required for correct Vietnamese or South Slavic spelling
  • Confuse đ (stroke) with ď (caron) or other accented d variants
  • Put CSS escape \0111 in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Four references render đ; named entity is most readable

&#x0111; &#273; &dstrok;
2

For CSS stylesheets, use the escape in the content property

\0111
3

Unicode U+0111 — LATIN SMALL LETTER D WITH STROKE

4

Essential for Vietnamese, Croatian, Serbian, Sámi, and multilingual content

❓ Frequently Asked Questions

Use &dstrok; (named), &#x0111; (hex), &#273; (decimal), or \0111 in CSS content. All four methods render đ correctly.
U+0111 (LATIN SMALL LETTER D WITH STROKE). Latin Extended-A block. Hex 0111, decimal 273. Used in Vietnamese, Croatian, Serbian, Sámi, and other languages.
For Vietnamese language content, Croatian and Serbian Latin orthography, Sámi language content, multilingual websites, language learning resources, and any text requiring the Latin small letter d with stroke.
HTML code (&#273; or &#x0111;) or the named entity &dstrok; is used in HTML content. The CSS entity (\0111) is used in CSS, e.g. in the content property of pseudo-elements. Both produce đ but in different contexts.
The named entity &dstrok; is easier to read and maintain in hand-written HTML. Numeric codes (&#273; or &#x0111;) are useful when generating HTML programmatically. All produce the same character đ.

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