HTML Entity for Uppercase D Caron (Ď)

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
U+010ELatin Extended-A
ĎHexadecimal reference
ĎDecimal reference
ĎMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\010E";
}
</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 caron (Ď) and the named entity Ď are supported in all modern browsers:
👀 Live Preview
See the uppercase D caron (Ď) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ď uses the Unicode hexadecimal value 010E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ď uses the decimal Unicode value 270 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
\010E 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+010E sits in Latin Extended-A. Lowercase equivalent: U+010F (ď). Do not confuse with plain D (U+0044) or Ɖ (D African).
Use Cases
The uppercase D caron (Ď) is commonly used in:
Proper names and place names such as Ďumbier and Ďurď in Czech-language content.
Names like Ďumbier and Ďurď in Slovak Latin-script text.
Websites and apps serving Czech, Slovak, and Central European audiences.
Personal names, place names, and brands that include Ď.
Language learning apps, dictionaries, and phonetic content.
Academic, legal, and editorial content in Central European languages.
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="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
Dwhen Ď is required for correct spelling - Confuse Ď (D caron) with Ɖ (D African) or other D variants
- Put CSS escape
\010Ein 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
\010EUnicode U+010E — LATIN CAPITAL LETTER D WITH CARON
Essential for Czech, Slovak, and i18n content
Previous: Uppercase D African (Ɖ) Next: Uppercase D Hook (Ɗ)
❓ Frequently Asked Questions
Ď (named), Ď (hex), Ď (decimal), or \010E in CSS content. The named entity Ď 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.Ď or Ď) or the named entity Ď 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.Ď. 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
