Latin Small Letter D With Caron

ď

Shortcodes

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

Unicode
U+010F
HTML Code
ď
HEX Code
ď
CSS Code
\010F
JS/JSON
\u010F
Unix/C/PHP/JAVA
0x10F
URL-encode
%C4%8F

Customize Latin Small Letter D With Caron

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

ď
  

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

Insert in HTML

1. Direct symbol:
<span>ď</span>
HTML Code:
<span>&#271;</span>
HEX Code:
<span>&#x010F;</span>

Add with CSS

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

Set it in JavaScript

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