Fullwidth Latin Small Letter D

Shortcodes

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

Unicode
U+FF44
HTML Code
d
HEX Code
d
CSS Code
\FF44
JS/JSON
\uFF44
Unix/C/PHP/JAVA
0xFF44
URL-encode
%EF%BD%84

Customize Fullwidth Latin Small Letter D

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

  

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

Insert in HTML

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

Add with CSS

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

Set it in JavaScript

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