Dong Sign

Shortcodes

Copy and paste codes for Dong Sign symbol ₫ to use in your websites, apps, blogs, and more.

Unicode
U+20AB
HTML Code
₫
HEX Code
₫
CSS Code
\20AB
JS/JSON
\u20AB
Unix/C/PHP/JAVA
0x20AB
URL-encode
%E2%82%AB
copied

Customize Dong Sign Symbol

Customize ₫ symbol as you like and download Dong Sign as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Dong Sign symbol in HTML, CSS, and JS?

Insert ₫ Dong Sign using HTML

1. Copy-paste Dong Sign directly:
<span>₫</span>
2. HTML Decimal Code:
<span>&#8363;</span>
3. Hexadecimal Code:
<span>&#x20AB;</span>
Preview:

Add Dong Sign symbol with CSS

.dong-sign::before {
    content: '\\20AB';
}
Preview: Dong Sign

Dong Sign JavaScript Code

1. Direct Symbol:
document.querySelector('.dong-sign').textContent = '₫';
2. Unicode Escape for ₫:
document.querySelector('.dong-sign').textContent = '\u20AB';
Preview: