Latin Small Letter D With Stroke

đ

Shortcodes

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

Unicode
U+0111
HTML Code
đ
HEX Code
đ
CSS Code
\0111
JS/JSON
\u0111
Unix/C/PHP/JAVA
0x111
URL-encode
%C4%91

Customize Latin Small Letter D With Stroke

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

đ
  

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

Insert in HTML

1. Direct symbol:
<span>đ</span>
HTML Code:
<span>&#273;</span>
HEX Code:
<span>&#x0111;</span>

Add with CSS

.latin-small-letter-d-with-stroke::before {
  content: '\\0111';
}

Set it in JavaScript

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