HTML Entity for Khmer Currency Symbol Riel (៛)

What You'll Learn
How to display the Khmer currency symbol Riel (៛) in HTML using hexadecimal, decimal, and CSS escape methods. The symbol is the currency sign for the Cambodian Riel.
It is U+17DB (KHMER CURRENCY SYMBOL RIEL) in the Khmer block (U+1780–U+17FF). Use ៛, ៛, or CSS \17DB. There is no named HTML entity for this character.
⚡ Quick Reference — Khmer Currency Symbol Riel
U+17DBKhmer Unicode block
៛Hexadecimal reference
៛Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+17DB
Hex code ៛
HTML code ៛
Named entity (none)
CSS code \17DB
Meaning Cambodian Riel currency (៛)
Glyph ៛
Example 4,050 ៛Complete HTML Example
This example shows the Khmer Riel symbol (U+17DB) using hexadecimal code, decimal HTML code, and a CSS content escape. This character has no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\17DB";
}
</style>
</head>
<body>
<p>Khmer Currency Symbol Riel using Hexadecimal: ៛</p>
<p>Khmer Currency Symbol Riel using Decimal: ៛</p>
<p id="point">Khmer Currency Symbol Riel using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Khmer Riel symbol (៛) is widely supported when fonts include the Khmer block (U+1780–U+17FF):
👀 Live Preview
See the Khmer Riel symbol (៛) in pricing and financial contexts:
🧠 How It Works
Hexadecimal Code
៛ uses the Unicode hexadecimal value 17DB to display the Khmer Riel symbol (៛).
Decimal HTML Code
៛ uses the decimal Unicode value 6107 for the same character.
CSS Entity
\17DB is used in CSS stylesheets in the content property, often on ::after following a base character in markup.
No Named Entity
U+17DB has no standard &...; named form. Use hex, decimal, or CSS escape only.
Same visual result
All three methods produce ៛ (៛). Unicode U+17DB is in the Khmer block. Next: Kip Sign.
Use Cases
The Khmer Riel symbol (៛) is commonly used in:
Online stores and product pages targeting Cambodia with prices in Riel.
Banking apps, balances, transfers, and reports showing Riel amounts.
Localized sites and apps for Cambodian users formatting currency in Riel.
Exchange tools and forex content listing or converting to/from Riel.
Invoice templates, receipts, and accounting software for Cambodian Riel.
Currency reference tables, symbol pickers, and Khmer symbol docs.
💡 Best Practices
Do
- Use
៛or៛in HTML content - Use fonts that support the Khmer block (U+17DB)
- Set
<meta charset="utf-8"> - Pick one numeric style per project
- Add
aria-labelor nearby text (e.g. “Cambodian Riel”) for accessibility - Pair with amounts (e.g. 4,050 ៛) following locale conventions
Don’t
- Expect a named HTML entity for U+17DB
- Use CSS
\17DBinside HTML text nodes - Use fonts without Khmer script support
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS for U+17DB
៛ ៛For CSS, use \17DB in the content property
Unicode U+17DB — KHMER CURRENCY SYMBOL RIEL
Khmer block; glyph ៛ (៛)
Previous: Kelvin Sign (U+212A) Next: Kip Sign
❓ Frequently Asked Questions
៛ (hex), ៛ (decimal), or \17DB in CSS content. There is no named entity. All methods render ៛ (៛) when the font supports U+17DB.U+17DB (KHMER CURRENCY SYMBOL RIEL). Khmer block (U+1780–U+17FF). Hex 17DB, decimal 6107. Official currency sign for the Cambodian Riel.៛ or ៛) go in markup. The CSS escape \17DB is used in stylesheets, typically on ::before or ::after. Both render ៛ (៛).Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, localization, and multilingual content.
8 people found this page helpful
