HTML Entity for Uppercase Dz Caron (DŽ)

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

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 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

Unicode U+01C4

Latin Extended-B

Hex Code DŽ

Hexadecimal reference

HTML Code DŽ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the uppercase Dz caron ligature (DŽ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01C4";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01C4;</p>
<p>Symbol (decimal): &#452;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 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:

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

👀 Live Preview

See the uppercase Dz caron ligature (DŽ) and how it differs from related characters:

Large glyphDŽ
Character typeLatin capital letter Dz with caron
Dz caron variantsDŽ (DŽ) / Dž (Dž) / dž (dž)
Not the same asDZ (plain Dz), separate D+Ž, or Ď (D caron)
Numeric refs&#x01C4; &#452; \01C4

🧠 How It Works

1

Hexadecimal Code

&#x01C4; uses the Unicode hexadecimal value 01C4 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01C4 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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

Croatian-language websites, documents, and content requiring the Dž ligature in proper orthography.

🇷🇺 Serbian

Serbian Latin-script content and localized text using DŽ where the Dž digraph is written as a ligature.

🔤 Linguistic documentation

Phonetic transcriptions, language research, and linguistic atlases using Dz caron ligatures.

🎨 Typography

Font design, character set documentation, and typographic projects with extended Latin ligatures.

📄 Academic publishing

Scholarly papers, dictionaries, and academic publications on Slavic and Balkan languages.

🌐 Multilingual sites

International websites and localization projects supporting Croatian and Serbian content.

📖 Character references

Unicode guides, encoding documentation, and technical references for special ligatures.

💡 Best Practices

Do

  • Use &#452; or &#x01C4; 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 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 \01C4 in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render DŽ (no named entity)

&#x01C4; &#452;
2

For CSS stylesheets, use the escape in the content property

\01C4
3

Unicode U+01C4 — LATIN CAPITAL LETTER DZ WITH CARON

4

Essential for Croatian, Serbian, and i18n content

❓ Frequently Asked Questions

Use &#x01C4; (hex), &#452; (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.
When writing Croatian, Serbian, or other language content, linguistic documentation, typographic design, academic papers, and any text requiring the Dz with caron ligature character.
HTML code (&#452; or &#x01C4;) 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.
Named HTML entities are mainly for ASCII, Latin-1, and common symbols. Latin Extended-B characters like DŽ use numeric codes (hex or decimal) because they belong to specialized Unicode blocks. This is standard for extended Latin characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, phonetic 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