HTML Entity for Lowercase Dz Caron (dž)

What You'll Learn
How to display the lowercase dz with caron (dž) in HTML using hexadecimal, decimal, and CSS escape methods. This digraph represents dž (d with caron) as a single character—the seventh letter in Gaj’s Latin alphabet used for Serbo-Croatian (Bosnian, Croatian, Montenegrin, Serbian) and also used in Slovak. It corresponds to Cyrillic Dzhe (џ) and is pronounced [dʰʒ]. It is U+01C6 in the Latin Extended-B block.
Render it with dž, dž, or CSS escape \01C6. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase Dz Caron Entity
U+01C6Latin Extended-B
džHexadecimal reference
džDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01C6
Hex code dž
HTML code dž
Named entity (none)
CSS code \01C6
Meaning Latin small letter dz with caron
Transliteration dž
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase dz caron (dž) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01C6";
}
</style>
</head>
<body>
<p>Symbol (hex): dž</p>
<p>Symbol (decimal): dž</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase dz caron (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 lowercase dz caron (dž) in South Slavic and Slovak contexts:
dz letters🧠 How It Works
Hexadecimal Code
dž uses the Unicode hexadecimal value 01C6 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
dž uses the decimal Unicode value 454 to display the same character. A common method for Latin Extended-B digraphs.
CSS Entity
\01C6 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+01C6 sits in Latin Extended-B. Do not confuse dž with ď (single d caron) or plain dz as two letters. Related forms: DŽ (uppercase) and Dž (titlecase). No named HTML entity.
Use Cases
The lowercase dz caron (dž) is commonly used in:
Correct spelling in Croatian text, where dž (dž) is a standard letter of the alphabet.
Represent the letter in Serbian and Montenegrin Latin script and language resources.
Display correct characters in Bosnian language content using the Latin script.
Show the tenth letter of the Slovak alphabet in correct orthography.
Serbo-Croatian and Slovak language courses, textbooks, and pronunciation guides.
Showcase Latin Extended-B digraph coverage in font demos and type design.
Support proper rendering for Serbo-Croatian and Slovak in multilingual websites.
💡 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
- Set
lang="hr",lang="sr",lang="bs", orlang="sk"on content - Use fonts that support Latin Extended-B characters
- Distinguish dž (dz digraph) from ď (single d caron)
Don’t
- Assume a named entity exists—there is none for dž
- Substitute plain
dzwhen the single digraph dž is required - Confuse dž (dz caron) with ď (d caron) or other d variants
- Put CSS escape
\01C6in HTML text nodes - Assume all fonts render Latin Extended-B digraphs identically
Key Takeaways
Three references render dž (no named entity)
dž džFor CSS stylesheets, use the escape in the content property
\01C6Unicode U+01C6 — LATIN SMALL LETTER DZ WITH CARON
Seventh letter in Gaj’s alphabet; used in Serbo-Croatian and Slovak
Previous: Lowercase D Topbar (ƌ) Next: Lowercase E
❓ Frequently Asked Questions
dž (hex), dž (decimal), or \01C6 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+01C6 (LATIN SMALL LETTER DZ WITH CARON). Latin Extended-B block. Hex 01C6, decimal 454. Seventh letter in Gaj’s Latin alphabet for Serbo-Croatian; also used in Slovak.dž or dž) is used in HTML content. The CSS entity (\01C6) is used in CSS, e.g. in the content property of pseudo-elements. Both produce dž but in different contexts.dž or dž in HTML, or \01C6 in CSS. This is standard for Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — Slavic letters, symbols, and more.
8 people found this page helpful
