Latin Small Letter D

d

Shortcodes

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

Unicode
U+0064
Alt Code
100
HTML Code
d
HEX Code
d
CSS Code
\0064
JS/JSON
\u0064
Unix/C/PHP/JAVA
0x64
URL-encode
d

Customize Latin Small Letter D

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

d
  

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

Insert in HTML

1. Direct symbol:
<span>d</span>
HTML Code:
<span>&#100;</span>
HEX Code:
<span>&#x0064;</span>

Add with CSS

.latin-small-letter-d::before {
  content: '\\0064';
}

Set it in JavaScript

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