HTML Entity for Uppercase D Caron (Ď)

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

What You'll Learn

How to display the uppercase D with caron (Ď) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is essential for Czech, Slovak, and other Central European languages. It is U+010E in the Latin Extended-A block.

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

⚡ Quick Reference — Uppercase D Caron Entity

Unicode U+010E

Latin Extended-A

Hex Code Ď

Hexadecimal reference

HTML Code Ď

Decimal reference

Named Entity Ď

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+010E
Hex code       Ď
HTML code      Ď
Named entity   Ď
CSS code       \010E
Meaning        Latin capital letter D with caron
Related        U+010F = ď (lowercase)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase D caron (Ď) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\010E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x010E;</p>
<p>Symbol (decimal): &#270;</p>
<p>Symbol (named): &Dcaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase D caron (Ď) and the named entity &Dcaron; are supported in all modern browsers:

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

👀 Live Preview

See the uppercase D caron (Ď) in language and content contexts:

Large glyphĎ
CzechĎumbier, Ďurď
SlovakĎurď, Ďumbier
Named entity&Dcaron; renders as Ď
Numeric refs&#x010E; &#270; &Dcaron; \010E

🧠 How It Works

1

Hexadecimal Code

&#x010E; uses the Unicode hexadecimal value 010E to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\010E 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+010E sits in Latin Extended-A. Lowercase equivalent: U+010F (&dcaron;). Do not confuse with plain D (U+0044) or Ɖ (D African).

Use Cases

The uppercase D caron (Ď) is commonly used in:

🇨🇿 Czech

Proper names and place names such as Ďumbier and Ďurď in Czech-language content.

🇸🇮 Slovak

Names like Ďumbier and Ďurď in Slovak Latin-script text.

🌐 Internationalization

Websites and apps serving Czech, Slovak, and Central European audiences.

📝 Proper names

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

🔤 Linguistics

Language learning apps, dictionaries, and phonetic content.

📄 Publishing

Academic, legal, and editorial content in Central European languages.

🔍 Search & SEO

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

💡 Best Practices

Do

  • Use &Dcaron; 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="cs", lang="sk") for correct pronunciation
  • Use fonts that support Latin Extended-A characters
  • Distinguish Ď (U+010E) from plain D (U+0044)—meaning can change in proper names

Don’t

  • Substitute plain D when Ď is required for correct spelling
  • Confuse Ď (D caron) with Ɖ (D African) or other D variants
  • Put CSS escape \010E 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

&#x010E; &#270; &Dcaron;
2

For CSS stylesheets, use the escape in the content property

\010E
3

Unicode U+010E — LATIN CAPITAL LETTER D WITH CARON

4

Essential for Czech, Slovak, and i18n content

❓ Frequently Asked Questions

Use &Dcaron; (named), &#x010E; (hex), &#270; (decimal), or \010E in CSS content. The named entity &Dcaron; is the most readable for HTML content.
U+010E (LATIN CAPITAL LETTER D WITH CARON). Latin Extended-A block. Hex 010E, decimal 270. Used in Czech, Slovak, and other Central European languages.
When writing Czech, Slovak, or other Central European language content, proper names, dictionary entries, multilingual websites, and any text requiring the uppercase D with caron.
HTML code (&#270; or &#x010E;) or the named entity &Dcaron; is used in HTML content. The CSS entity (\010E) 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 &Dcaron;. It is part of the HTML5 entity set and is well supported. You can also use &#270; or &#x010E; 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