Double-struck Italic Small D

Shortcodes

Copy useful codes for double-struck italic small d symbol ⅆ to use in websites, apps, blogs, and docs.

Unicode
U+2146
HTML Code
ⅆ
HEX Code
ⅆ
CSS Code
\2146
JS/JSON
\u2146
Unix/C/PHP/JAVA
0x2146
URL-encode
%E2%85%86

Customize Double-struck Italic Small D

Customize ⅆ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Double-struck Italic Small D Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ⅆ</span>
HTML Code:
<span>&#8518;</span>
HEX Code:
<span>&#x2146;</span>

Add with CSS

.double-struck-italic-small-d::before {
  content: '\\2146';
}

Set it in JavaScript

document.querySelector('.double-struck-italic-small-d').textContent = 'ⅆ';
copied