HTML Entity for Double Struck Italic Small D (ⅆ)

What You'll Learn
How to display the Double Struck Italic Small D (ⅆ) in HTML using hexadecimal, decimal, the named entity ⅆ, and CSS escape methods. This character is U+2146 (DOUBLE-STRUCK ITALIC SMALL D) in the Letterlike Symbols block (U+2100–U+214F)—the double-struck italic form of Latin small letter d used in mathematics and differential notation.
Render it with ⅆ, ⅆ, ⅆ, or CSS escape \2146. For the capital variant use ⅅ (U+2145, ⅅ). See also math entities.
⚡ Quick Reference — Double Struck Italic Small D
U+2146Letterlike Symbols block
ⅆHexadecimal reference
ⅆDecimal reference
ⅆHTML5 named entity for U+2146
Name Value
──────────── ──────────
Unicode U+2146
Hex code ⅆ
HTML code ⅆ
Named entity ⅆ
CSS code \2146
Related U+2145 = Capital D (ⅅ)Complete HTML Example
This example demonstrates the Double Struck Italic Small D (ⅆ) using hexadecimal code, decimal HTML code, the named entity ⅆ, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2146";
}
</style>
</head>
<body>
<p>Double Struck Italic Small D using Hexadecimal: ⅆ</p>
<p>Double Struck Italic Small D using HTML Code: ⅆ</p>
<p>Double Struck Italic Small D using HTML Entity: ⅆ</p>
<p id="point">Double Struck Italic Small D using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2146 is widely supported in modern browsers when rendered with a font that includes Letterlike Symbols:
👀 Live Preview
See the Double Struck Italic Small D (ⅆ) in mathematical notation:
🧠 How It Works
Hexadecimal Code
ⅆ uses the Unicode hexadecimal value 2146 to display the Double Struck Italic Small D. The x prefix indicates hexadecimal format.
Decimal HTML Code
ⅆ uses the decimal Unicode value 8518 to display the same character.
Named HTML Entity
ⅆ is the HTML5 named entity for U+2146. It is easy to read in source and resolves to the same character (ⅆ).
CSS Entity
\2146 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+2146. Capital variant: ⅅ (ⅅ, U+2145).
Use Cases
The Double Struck Italic Small D (ⅆ) commonly appears in:
Calculus where the double-struck italic small d appears in differentials (e.g. ⅆx alongside dx notation).
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 ⅆ (small) from ⅅ (
ⅅ, capital) - Use
\2146only inside CSScontent - Keep entity style consistent across the document
Don’t
- Confuse
ⅆ(U+2146) with unrelated entities - Use
ⅅwhen you need capital ⅅ - Put CSS escape
\2146in 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
\2146Unicode U+2146 DOUBLE-STRUCK ITALIC SMALL D
Capital D: ⅅ via ⅅ or ⅅ
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
ⅆ (hex), ⅆ (decimal), ⅆ (named entity), or \2146 in CSS content. All produce ⅆ.U+2146 (DOUBLE-STRUCK ITALIC SMALL D). Letterlike Symbols block (U+2100–U+214F). Hex 2146, decimal 8518. Double-struck italic form of Latin small letter d.ⅆ, ⅆ, or ⅆ) go in markup. The CSS escape \2146 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
