HTML Entity for Uppercase Dz Caron (DŽ)

What You'll Learn
How to display the uppercase Dz with caron ligature (DŽ) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER DZ WITH CARON, this digraph represents DŽ (D with Z caron) as a single character—used in Croatian, Serbian, and other languages that employ Gaj’s Latin alphabet. It is U+01C4 in the Latin Extended-B block.
Render it with DŽ, DŽ, or CSS escape \01C4. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase Dz Caron Entity
U+01C4Latin Extended-B
DŽHexadecimal reference
DŽDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01C4
Hex code DŽ
HTML code DŽ
Named entity (none)
CSS code \01C4
Meaning Latin capital letter Dz with caron
Transliteration D\u017E
Related U+01C5 = title case (Dž), U+01C6 = lowercase (dž)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase Dz caron ligature (DŽ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01C4";
}
</style>
</head>
<body>
<p>Symbol (hex): DŽ</p>
<p>Symbol (decimal): DŽ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase 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 uppercase Dz caron ligature (DŽ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
DŽ uses the Unicode hexadecimal value 01C4 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
DŽ uses the decimal Unicode value 452 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01C4 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+01C4 sits in Latin Extended-B. Related forms: U+01C5 (Dž title case) and U+01C6 (dž lowercase). Do not confuse DŽ with plain DZ (Dz without caron) or separate D+Ž. There is no named HTML entity.
Use Cases
The uppercase Dz caron ligature (DŽ) is commonly used in:
Croatian-language websites, documents, and content requiring the Dž ligature in proper orthography.
Serbian Latin-script content and localized text using DŽ where the Dž digraph is written as a ligature.
Phonetic transcriptions, language research, and linguistic atlases using Dz caron ligatures.
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 one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish DŽ from plain DZ, Dž, dž, and separate
D+Ž
Don’t
- Assume a named entity exists—there is none for DŽ
- Substitute plain
DŽor DZ when DŽ is required for orthographic accuracy - Confuse DŽ (DŽ caron) with Dž (Dž) or dž (dž) when the wrong form is needed
- Put CSS escape
\01C4in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- 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
\01C4Unicode U+01C4 — LATIN CAPITAL LETTER DZ WITH CARON
Essential for Croatian, Serbian, and i18n content
Previous: Uppercase Dz (DZ) Next: Uppercase Dz Caron Small (Dž)
❓ Frequently Asked Questions
DŽ (hex), DŽ (decimal), or \01C4 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01C4 (LATIN CAPITAL LETTER DZ WITH CARON). Latin Extended-B block. Hex 01C4, decimal 452. Used in Croatian, Serbian, and other languages with Dž digraph ligatures.DŽ or DŽ) is used in HTML content. The CSS entity (\01C4) is used in CSS, e.g. in the content property of pseudo-elements. Both produce DŽ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, phonetic symbols, and more.
8 people found this page helpful
