HTML Entity for Double Struck Italic Capital D (ⅅ)

What You'll Learn
How to display the Double Struck Italic Capital D (ⅅ) in HTML using hexadecimal, decimal, the named entity ⅅ, and CSS escape methods. This character is U+2145 (DOUBLE-STRUCK ITALIC CAPITAL D) in the Letterlike Symbols block (U+2100–U+214F)—the double-struck italic form of Latin capital D used in mathematics and differential notation.
Render it with ⅅ, ⅅ, ⅅ, or CSS escape \2145. For the small variant use ⅆ (U+2146, ⅆ). See also math entities.
⚡ Quick Reference — Double Struck Italic Capital D
U+2145Letterlike Symbols block
ⅅHexadecimal reference
ⅅDecimal reference
ⅅHTML5 named entity for U+2145
Name Value
──────────── ──────────
Unicode U+2145
Hex code ⅅ
HTML code ⅅ
Named entity ⅅ
CSS code \2145
Related U+2146 = Small d (ⅆ)Complete HTML Example
This example demonstrates the Double Struck Italic Capital D (ⅅ) using hexadecimal code, decimal HTML code, the named entity ⅅ, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2145";
}
</style>
</head>
<body>
<p>Double Struck Italic Capital D using Hexadecimal: ⅅ</p>
<p>Double Struck Italic Capital D using HTML Code: ⅅ</p>
<p>Double Struck Italic Capital D using HTML Entity: ⅅ</p>
<p id="point">Double Struck Italic Capital D using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2145 is widely supported in modern browsers when rendered with a font that includes Letterlike Symbols:
👀 Live Preview
See the Double Struck Italic Capital D (ⅅ) in mathematical notation:
🧠 How It Works
Hexadecimal Code
ⅅ uses the Unicode hexadecimal value 2145 to display the Double Struck Italic Capital D. The x prefix indicates hexadecimal format.
Decimal HTML Code
ⅅ uses the decimal Unicode value 8517 to display the same character.
Named HTML Entity
ⅅ is the HTML5 named entity for U+2145. It is easy to read in source and resolves to the same character (ⅅ).
CSS Entity
\2145 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⅅ. Unicode U+2145. Small variant: ⅆ (ⅆ, U+2146).
Use Cases
The Double Struck Italic Capital D (ⅅ) commonly appears in:
Calculus and mathematics where the double-struck italic D denotes a derivative or differential operator.
Domain notation and set theory where this letterlike symbol distinguishes from the regular letter D.
Textbooks, papers, and course materials requiring letterlike math symbols in HTML.
Equation editors and math rendering alongside other double-struck italic letters.
Entity lists and guides for Letterlike Symbols (U+2100–U+214F).
Use math-capable fonts so ⅅ renders clearly for all readers.
💡 Best Practices
Do
- Use
ⅅfor readable markup, orⅅ/ⅅ - Use math fonts (Cambria Math, STIX Two Math) for reliable rendering
- Distinguish ⅅ (capital) from ⅆ (
ⅆ, small) - Use
\2145only inside CSScontent - Keep entity style consistent across the document
Don’t
- Confuse
ⅅ(U+2145) with unrelated entities - Use
ⅆwhen you need capital ⅅ - Put CSS escape
\2145in HTML text nodes - Forget UTF-8 (
<meta charset="utf-8">) on math pages - Assume every font includes Letterlike Symbols
Key Takeaways
Named entity available: ⅅ
ⅅ ⅅFor CSS stylesheets, use the escape in the content property
\2145Unicode U+2145 DOUBLE-STRUCK ITALIC CAPITAL D
Small d: ⅆ via ⅆ or ⅆ
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
ⅅ (hex), ⅅ (decimal), ⅅ (named entity), or \2145 in CSS content. All produce ⅅ.U+2145 (DOUBLE-STRUCK ITALIC CAPITAL D). Letterlike Symbols block (U+2100–U+214F). Hex 2145, decimal 8517. Double-struck italic form of Latin capital D.ⅅ, ⅅ, or ⅅ) go in markup. The CSS escape \2145 is used in stylesheets, typically in the content property of pseudo-elements.ⅅ is easier to read in source than ⅅ or ⅅ, but all produce ⅅ. The named entity is part of the HTML5 entity set for Letterlike Symbols.Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, letterlike glyphs, and more.
8 people found this page helpful
