Latin Capital Letter D With Stroke

Đ

Shortcodes

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

Unicode
U+0110
HTML Code
Đ
HEX Code
Đ
CSS Code
\0110
JS/JSON
\u0110
Unix/C/PHP/JAVA
0x110
URL-encode
%C4%90

Customize Latin Capital Letter D With Stroke

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

Đ
  

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

Insert in HTML

1. Direct symbol:
<span>Đ</span>
HTML Code:
<span>&#272;</span>
HEX Code:
<span>&#x0110;</span>

Add with CSS

.latin-capital-letter-d-with-stroke::before {
  content: '\\0110';
}

Set it in JavaScript

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