Mathematical Bold Capital D

๐ƒ

Shortcodes

Copy useful codes for mathematical bold capital d symbol ๐ƒ to use in websites, apps, blogs, and docs.

Unicode
U+1D403
HTML Code
𝐃
HEX Code
𝐃
CSS Code
\1D403
JS/JSON
\u1D403
Unix/C/PHP/JAVA
0x1D403
URL-encode
%F0%9D%90%83

Customize Mathematical Bold Capital D

Customize ๐ƒ, download it as SVG or PNG, or copy the generated HTML snippet.

๐ƒ
  

How to use Mathematical Bold Capital D Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ƒ</span>
HTML Code:
<span>&#119811;</span>
HEX Code:
<span>&#x1D403;</span>

Add with CSS

.mathematical-bold-capital-d::before {
  content: '\\1D403';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-capital-d').textContent = '๐ƒ';
copied