HTML Entity for Dong Sign (₫)

What You'll Learn
How to display the Vietnamese Dong sign (₫) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+20AB (DONG SIGN) in the Currency Symbols block (U+20A0–U+20CF) and is the official currency symbol for the Vietnamese Dong.
There is no named HTML entity for U+20AB. Use ₫, ₫, or \20AB in CSS content. Do not confuse with the dollar sign ($, $) or euro (€, €).
⚡ Quick Reference — Dong Sign
U+20ABCurrency Symbols block
₫Hexadecimal reference
₫Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+20AB
Hex code ₫
HTML code ₫
Named entity —
CSS code \20ABComplete HTML Example
This example demonstrates the Dong Sign symbol (₫) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\20AB";
}
</style>
</head>
<body>
<p>Dong Sign using Hexadecimal: ₫</p>
<p>Dong Sign using HTML Code: ₫</p>
<p id="point">Dong Sign using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+20AB is supported in modern browsers; use fonts that include Currency Symbols (U+20A0–U+20CF) for consistent glyphs:
👀 Live Preview
See the Vietnamese Dong sign (₫) in pricing and financial content:
🧠 How It Works
Hexadecimal Code
₫ uses the Unicode hexadecimal value 20AB to display the Dong Sign symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
₫ uses the decimal Unicode value 8363 to display the same character. This is one of the most commonly used methods.
CSS Entity
\20AB is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the Dong sign: ₫. Unicode U+20AB is the Vietnamese Dong currency symbol. No named HTML entity exists—use numeric references.
Use Cases
The Dong Sign symbol (₫) commonly appears in the following scenarios:
Product prices and checkout totals in Vietnamese Dong (VND).
Invoices, reports, and banking content for Vietnam markets.
Conversion widgets and international finance applications.
Marketplaces targeting Vietnamese customers with ₫ prices.
HTML entity guides for currency and special characters.
Complete references for displaying currency symbols in HTML.
💡 Best Practices
Do
- Use
₫or₫for Vietnamese Dong prices - Use UTF-8 and fonts with Currency Symbols coverage
- Pair with “VND” or text for clarity when needed
- Use
\20ABin CSScontentfor generated labels - Pick one numeric style (hex or decimal) per project
Don’t
- Confuse ₫ (U+20AB) with $ (dollar, U+0024) or € (euro)
- Expect a named HTML entity (none exists for U+20AB)
- Use invented entity names like
&ndong; - Use CSS escape
\20ABinside HTML markup - Mix hex and decimal styles randomly in one file
Key Takeaways
Two numeric references render ₫
₫ ₫For CSS stylesheets, use the escape in the content property
\20ABUnicode U+20AB is the Vietnamese Dong sign
No named entity—use hex, decimal, or CSS
Next: Dot Above
❓ Frequently Asked Questions
₫ (hex), ₫ (decimal), or \20AB in CSS content. There is no named HTML entity. All three produce ₫.U+20AB (hex 20AB, decimal 8363) in the Currency Symbols block. Official symbol for the Vietnamese Dong.₫ and ₫ go in HTML markup. \20AB is for CSS, especially content on ::before and ::after. All render ₫.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, operators, and more.
8 people found this page helpful
