HTML Entity for Uppercase Dz Caron Small (Dž)

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

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

Unicode U+01C5

Latin Extended-B

Hex Code Dž

Hexadecimal reference

HTML Code Dž

Decimal reference

Named Entity

No named entity

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

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:

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

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

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

👀 Live Preview

See the title-case Dz caron ligature (Dž) and how it fits in the Dz caron trio:

Large glyphDž
Character typeLatin capital D with small z with caron (title case)
Dz caron variantsDŽ (DŽ) / Dž (Dž) / dž (dž)
Typical useWord-initial or mixed-case text, e.g. Džak (džak)
Not the same asDŽ (all caps), dž (all lower), or separate D+ž
Numeric refs&#x01C5; &#453; \01C5

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\01C5 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+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:

🇭🇷 Croatian

Word-initial and mixed-case Croatian text where Dž appears as a single title-case ligature.

🇷🇺 Serbian

Serbian Latin-script content using Dž at sentence or word boundaries in proper orthography.

🔤 Linguistic documentation

Phonetic transcriptions, language research, and linguistic atlases documenting the Dz caron trio.

🎨 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 &#453; or &#x01C5; 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" or lang="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 as two characters when the ligature is needed
  • Confuse Dž with dž (all lowercase) or plain Dz (Dz without caron)
  • Put CSS escape \01C5 in HTML text nodes
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render Dž (no named entity)

&#x01C5; &#453;
2

For CSS stylesheets, use the escape in the content property

\01C5
3

Unicode U+01C5 — LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON

4

Title-case form in the Dz caron trio (DŽ / Dž / dž)

❓ Frequently Asked Questions

Use &#x01C5; (hex), &#453; (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.
When writing Croatian, Serbian, or other language content at word boundaries or in mixed-case text, linguistic documentation, typographic design, academic papers, and any text requiring the Dž title-case ligature.
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.
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