HTML Entity for Uppercase Dz Small (Dz)

What You'll Learn
How to display the title-case Dz ligature (Dz) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER D WITH SMALL LETTER Z, this digraph represents Dz (capital D with small z) as a single character—the middle form in the plain Dz trio used in Croatian, Serbian, and other languages. It is U+01F2 in the Latin Extended-B block.
Render it with Dz, Dz, or CSS escape \01F2. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase Dz Small Entity
U+01F2Latin Extended-B
DzHexadecimal reference
DzDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01F2
Hex code Dz
HTML code Dz
Named entity (none)
CSS code \01F2
Meaning Latin capital D with small z
Related U+01F1 = uppercase (DZ), U+01F3 = lowercase (dz)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the title-case Dz ligature (Dz) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01F2";
}
</style>
</head>
<body>
<p>Symbol (hex): Dz</p>
<p>Symbol (decimal): Dz</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The title-case Dz ligature (Dz) 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 ligature (Dz) and how it fits in the plain Dz trio:
🧠 How It Works
Hexadecimal Code
Dz uses the Unicode hexadecimal value 01F2 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Dz uses the decimal Unicode value 498 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01F2 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: Dz. Unicode U+01F2 sits in Latin Extended-B. Related forms: U+01F1 (DZ all caps) and U+01F3 (dz lowercase). Do not confuse Dz with Dž (Dz with caron) or separate D+z. There is no named HTML entity.
Use Cases
The title-case Dz ligature (Dz) is commonly used in:
Word-initial and mixed-case Croatian text where Dz appears as a single title-case ligature.
Serbian Latin-script content using Dz at sentence or word boundaries in proper orthography.
Phonetic transcriptions, language research, and linguistic atlases documenting the plain Dz 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
DzorDzin HTML (no named entity exists) - Serve pages as UTF-8; you can also type Dz directly in UTF-8 source
- Pick the correct trio form: DZ (all caps), Dz (title case), dz (lowercase)
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish plain Dz (DZ/Dz/dz) from Dz caron (DŽ/Dž/dž)
Don’t
Key Takeaways
Three references render Dz (no named entity)
Dz DzFor CSS stylesheets, use the escape in the content property
\01F2Unicode U+01F2 — LATIN CAPITAL LETTER D WITH SMALL LETTER Z
Title-case form in the plain Dz trio (DZ / Dz / dz)
Previous: Uppercase Dz Caron Small (Dž) Next: Uppercase E
❓ Frequently Asked Questions
Dz (hex), Dz (decimal), or \01F2 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01F2 (LATIN CAPITAL LETTER D WITH SMALL LETTER Z). Latin Extended-B block. Hex 01F2, decimal 498. Middle form in the plain Dz trio used in Croatian and Serbian.U+01F1 (DZ) is all-uppercase DZ, U+01F2 (Dz) is title-case Dz, and U+01F3 (dz) is all-lowercase dz. 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
