HTML Entity for Uppercase Dz (DZ)

What You'll Learn
How to display the uppercase Dz ligature (DZ) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER DZ, this digraph ligature is used in Croatian, Serbian, and other languages where D and Z combine as a single character. It is U+01F1 in the Latin Extended-B block.
Render it with DZ, DZ, or CSS escape \01F1. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase Dz Entity
U+01F1Latin Extended-B
DZHexadecimal reference
DZDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01F1
Hex code DZ
HTML code DZ
Named entity (none)
CSS code \01F1
Meaning Latin capital letter Dz ligature
Related U+01F2 = title case (Dz), U+01F3 = lowercase (dz)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase Dz ligature (DZ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01F1";
}
</style>
</head>
<body>
<p>Symbol (hex): DZ</p>
<p>Symbol (decimal): DZ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase Dz ligature (DZ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase Dz ligature (DZ) and how it differs from related characters:
D+z or Ƌ (D topbar)🧠 How It Works
Hexadecimal Code
DZ uses the Unicode hexadecimal value 01F1 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
DZ uses the decimal Unicode value 497 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\01F1 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+01F1 sits in Latin Extended-B. Related forms: U+01F2 (Dz title case) and U+01F3 (dz lowercase). Do not confuse DZ with separate D+z or other D variants. There is no named HTML entity.
Use Cases
The uppercase Dz ligature (DZ) is commonly used in:
Croatian-language websites, documents, and content requiring the Dz ligature in proper orthography.
Serbian Latin-script content and localized text using DZ where the digraph is written as a ligature.
Phonetic transcriptions, language research, and linguistic atlases using Dz 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
DZorDZin HTML (no named entity exists) - Serve pages as UTF-8; you can also type DZ 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 DZ from separate
D+z, Dz, dz, and other D variants
Don’t
- Assume a named entity exists—there is none for DZ
- Substitute plain
Dzwhen DZ is required for orthographic accuracy - Confuse DZ (DZ ligature) with Dz (Dz) or dz (dz) when the wrong form is needed
- Put CSS escape
\01F1in HTML text nodes - Assume all fonts render Latin Extended-B glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Three references render DZ (no named entity)
DZ DZFor CSS stylesheets, use the escape in the content property
\01F1Unicode U+01F1 — LATIN CAPITAL LETTER DZ
Essential for Croatian, Serbian, and i18n content
Previous: Uppercase D Topbar (Ƌ) Next: Uppercase Dz Caron (DŽ)
❓ Frequently Asked Questions
DZ (hex), DZ (decimal), or \01F1 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01F1 (LATIN CAPITAL LETTER DZ). Latin Extended-B block. Hex 01F1, decimal 497. Used in Croatian, Serbian, and other languages with Dz digraph ligatures.DZ or DZ) is used in HTML content. The CSS entity (\01F1) is used in CSS, e.g. in the content property of pseudo-elements. Both produce DZ 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
