HTML Entity for Lowercase D Caron (ď)

What You'll Learn
How to display the lowercase d with caron (ď) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Czech, Slovak, and other languages that use Latin Extended-A characters, it appears in words such as ďaleko and medveď. It is U+010F in the Latin Extended-A block.
Render it with ď, ď, ď, or CSS escape \010F. The named entity ď is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase D Caron Entity
U+010FLatin Extended-A
ďHexadecimal reference
ďDecimal reference
ďMost readable option
Name Value
──────────── ──────────
Unicode U+010F
Hex code ď
HTML code ď
Named entity ď
CSS code \010F
Meaning Latin small letter d with caron
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase d caron (ď) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\010F";
}
</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 lowercase d caron (ď) and the named entity ď are supported in all modern browsers:
👀 Live Preview
See the lowercase d caron (ď) in Czech, Slovak, and multilingual contexts:
d (U+0064) or đ (d with stroke, U+0111)🧠 How It Works
Hexadecimal Code
ď uses the Unicode hexadecimal value 010F to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ď uses the decimal Unicode value 271 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ď is the standard named entity for ď—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\010F 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+010F sits in Latin Extended-A. Do not confuse ď with plain d (U+0064) or đ (d with stroke, U+0111).
Use Cases
The lowercase d caron (ď) is commonly used in:
Correct spelling in Czech text (e.g. ďaleko, ďalší, and proper nouns).
Represent the letter ď in Slovak orthography and language resources (e.g. medveď).
Pronunciation guides, dictionaries, and Czech/Slovak language courses with correct characters.
Render personal names, place names, and brand names that contain ď correctly.
Ensure proper typography in papers, books, and publications with Czech or Slovak script.
Showcase Latin Extended-A coverage in font demos and type design.
Support proper rendering for international audiences using Latin Extended-A characters.
💡 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
lang="cs"orlang="sk"on Czech/Slovak content for correct language handling - Use fonts that support Latin Extended-A characters
- Distinguish ď (caron) from plain
d(U+0064) and đ (d with stroke)
Don’t
- Substitute plain
dwhen ď is required for correct Czech or Slovak spelling - Confuse ď (caron) with đ (stroke) or other accented d variants
- Put CSS escape
\010Fin HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Four references render ď; named entity is most readable
ď ď ďFor CSS stylesheets, use the escape in the content property
\010FUnicode U+010F — LATIN SMALL LETTER D WITH CARON
Essential for Czech, Slovak, and multilingual web content with caron accents
Previous: Lowercase D (d) Next: Lowercase D Curl
❓ Frequently Asked Questions
ď (named), ď (hex), ď (decimal), or \010F in CSS content. All four methods render ď correctly.U+010F (LATIN SMALL LETTER D WITH CARON). Latin Extended-A block. Hex 010F, decimal 271. Used in Czech and Slovak orthography.ď or ď) or the named entity ď is used in HTML content. The CSS entity (\010F) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ď but in different contexts.ď is easier to read and maintain in hand-written HTML. Numeric codes (ď or ď) 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.
8 people found this page helpful
