Latin Capital Letter D With Caron

Ď

Shortcodes

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

Unicode
U+010E
HTML Code
Ď
HEX Code
Ď
CSS Code
\010E
JS/JSON
\u010E
Unix/C/PHP/JAVA
0x10E
URL-encode
%C4%8E

Customize Latin Capital Letter D With Caron

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

Ď
  

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

Insert in HTML

1. Direct symbol:
<span>Ď</span>
HTML Code:
<span>&#270;</span>
HEX Code:
<span>&#x010E;</span>

Add with CSS

.latin-capital-letter-d-with-caron::before {
  content: '\\010E';
}

Set it in JavaScript

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