Georgian Letter Don

Shortcodes

Copy useful codes for georgian letter don symbol დ to use in websites, apps, blogs, and docs.

Unicode
U+10D3
HTML Code
დ
HEX Code
დ
CSS Code
\10D3
JS/JSON
\u10D3
Unix/C/PHP/JAVA
0x10D3
URL-encode
%E1%83%93

Customize Georgian Letter Don

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

  

How to use Georgian Letter Don Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>დ</span>
HTML Code:
<span>&#4307;</span>
HEX Code:
<span>&#x10D3;</span>

Add with CSS

.georgian-letter-don::before {
  content: '\\10D3';
}

Set it in JavaScript

document.querySelector('.georgian-letter-don').textContent = 'დ';
copied