Latin Letter Small Capital D

Shortcodes

Copy useful codes for latin letter small capital d symbol ᴅ to use in websites, apps, blogs, and docs.

Unicode
U+1D05
HTML Code
ᴅ
HEX Code
ᴅ
CSS Code
\1D05
JS/JSON
\u1D05
Unix/C/PHP/JAVA
0x1D05
URL-encode
%E1%B4%85

Customize Latin Letter Small Capital D

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

  

How to use Latin Letter Small Capital D Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᴅ</span>
HTML Code:
<span>&#7429;</span>
HEX Code:
<span>&#x1D05;</span>

Add with CSS

.latin-letter-small-capital-d::before {
  content: '\\1D05';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-d').textContent = 'ᴅ';
copied