Modifier Letter Small D

Shortcodes

Copy useful codes for modifier letter small d symbol ᵈ to use in websites, apps, blogs, and docs.

Unicode
U+1D48
HTML Code
ᵈ
HEX Code
ᵈ
CSS Code
\1D48
JS/JSON
\u1D48
Unix/C/PHP/JAVA
0x1D48
URL-encode
%E1%B5%88

Customize Modifier Letter Small D

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵈ</span>
HTML Code:
<span>&#7496;</span>
HEX Code:
<span>&#x1D48;</span>

Add with CSS

.modifier-letter-small-d::before {
  content: '\\1D48';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-d').textContent = 'ᵈ';
copied