HTML Entity for Uppercase Dz Caron Small (Dž)

What You'll Learn
How to display the title-case Dz with caron ligature (Dž) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON, this digraph represents Dž (capital D with small z caron) as a single character—the middle form in the Dz caron trio used in Croatian, Serbian, and other languages with Gaj’s Latin alphabet. It is U+01C5 in the Latin Extended-B block.
Render it with Dž, Dž, or CSS escape \01C5. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase Dz Caron Small Entity
U+01C5Latin Extended-B
DžHexadecimal reference
DžDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01C5
Hex code Dž
HTML code Dž
Named entity (none)
CSS code \01C5
Meaning Latin capital D with small z with caron
Transliteration D\u017E
Related U+01C4 = uppercase (DŽ), U+01C6 = lowercase (dž)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the title-case Dz caron ligature (Dž) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01C5";
}
</style>
</head>
<body>
<p>Symbol (hex): Dž</p>
<p>Symbol (decimal): Dž</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The title-case Dz caron ligature (Dž) renders correctly in modern browsers when UTF-8 is used and a font with Latin Extended-B support is available:
👀 Live Preview
See the title-case Dz caron ligature (Dž) and how it fits in the Dz caron trio:
🧠 How It Works
Hexadecimal Code
Dž uses the Unicode hexadecimal value 01C5 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Dž uses the decimal Unicode value 453 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01C5 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Dž. Unicode U+01C5 sits in Latin Extended-B. Related forms: U+01C4 (DŽ all caps) and U+01C6 (dž lowercase). Do not confuse Dž with DŽ or separate D+ž. There is no named HTML entity.
Use Cases
The title-case Dz caron ligature (Dž) is commonly used in:
Word-initial and mixed-case Croatian text where Dž appears as a single title-case ligature.
Serbian Latin-script content using Dž at sentence or word boundaries in proper orthography.
Phonetic transcriptions, language research, and linguistic atlases documenting the Dz caron trio.
Font design, character set documentation, and typographic projects with extended Latin ligatures.
Scholarly papers, dictionaries, and academic publications on Slavic and Balkan languages.
International websites and localization projects supporting Croatian and Serbian content.
Unicode guides, encoding documentation, and technical references for special ligatures.
💡 Best Practices
Do
- Use
DžorDžin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Dž directly in UTF-8 source
- Pick the correct trio form: DŽ (all caps), Dž (title case), dž (lowercase)
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Set
lang="hr"orlang="sr"on Croatian or Serbian content
Don’t
- Assume a named entity exists—there is none for Dž
- Use DŽ when Dž (title case) is orthographically required
- Substitute plain
Džas two characters when the ligature is needed - Confuse Dž with dž (all lowercase) or plain Dz (Dz without caron)
- Put CSS escape
\01C5in HTML text nodes - Mix entity styles randomly in one file
Key Takeaways
Three references render Dž (no named entity)
Dž DžFor CSS stylesheets, use the escape in the content property
\01C5Unicode U+01C5 — LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON
Title-case form in the Dz caron trio (DŽ / Dž / dž)
Previous: Uppercase Dz Caron (DŽ) Next: Uppercase Dz Small (Dz)
❓ Frequently Asked Questions
Dž (hex), Dž (decimal), or \01C5 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01C5 (LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON). Latin Extended-B block. Hex 01C5, decimal 453. Middle form in the Dz caron trio used in Croatian and Serbian.U+01C4 (DŽ) is all-uppercase DŽ, U+01C5 (Dž) is title-case Dž, and U+01C6 (dž) is all-lowercase dž. Unicode provides three ligature forms for the same digraph depending on casing context.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, phonetic symbols, and more.
8 people found this page helpful
