Latin Letter Small Capital D

Shortcodes

Copy and paste codes for Latin Letter Small Capital D symbol ᴅ to use in your websites, apps, blogs, and more.

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

Customize Latin Letter Small Capital D Symbol

Customize ᴅ symbol as you like and download Latin Letter Small Capital D as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Latin Letter Small Capital D symbol in HTML, CSS, and JS?

Insert ᴅ Latin Letter Small Capital D using HTML

1. Copy-paste Latin Letter Small Capital D directly:
<span>ᴅ</span>
2. HTML Decimal Code:
<span>&#7429;</span>
3. Hexadecimal Code:
<span>&#x1D05;</span>
Preview:

Add Latin Letter Small Capital D symbol with CSS

.latin-letter-small-capital-d::before {
    content: '\\1D05';
}
Preview: Latin Letter Small Capital D

Latin Letter Small Capital D JavaScript Code

1. Direct Symbol:
document.querySelector('.latin-letter-small-capital-d').textContent = 'ᴅ';
2. Unicode Escape for ᴅ:
document.querySelector('.latin-letter-small-capital-d').textContent = '\u1D05';
Preview: