HTML Entity for Tugrik Sign (₮)

What You'll Learn
How to display the Tugrik Sign (₮) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20AE (TUGRIK SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the official symbol for the Mongolian tugrik (MNT).
Render it with ₮, ₮, or CSS escape \20AE. There is no named HTML entity. Do not confuse ₮ with ₸ (tenge, U+20B8) or ₺ (Turkish lira, U+20BA).
⚡ Quick Reference — Tugrik Sign
U+20AECurrency Symbols
₮Hexadecimal reference
₮Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+20AE
Hex code ₮
HTML code ₮
Named entity (none)
CSS code \20AE
Block Currency Symbols (U+20A0–U+20CF)
Currency Mongolian tugrik (MNT)
Related U+20B8 = Tenge (₸), U+20BA = Lira (₺)Complete HTML Example
This example demonstrates the Tugrik Sign (₮) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\20AE";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ₮</p>
<p>Using HTML Code: ₮</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Tugrik Sign is supported in all modern browsers when fonts include Currency Symbols glyphs:
👀 Live Preview
See the Tugrik Sign (₮) in pricing and currency context:
🧠 How It Works
Hexadecimal Code
₮ uses the Unicode hexadecimal value 20AE to display the Tugrik Sign. The x prefix indicates hexadecimal format.
Decimal HTML Code
₮ uses the decimal Unicode value 8366 to display the same character.
CSS Entity
\20AE is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce ₮. Unicode U+20AE in the Currency Symbols block. No named entity. Previous: Ts Digraph. Next: Turkish Lira Sign.
Use Cases
The Tugrik Sign (₮) commonly appears in:
Banking apps and investment platforms showing MNT amounts.
Product prices and checkout totals in Mongolian tugrik.
Exchange-rate tools and financial calculators.
Local business sites and regional content for Mongolia.
Hotels, flights, and tours priced in tugrik.
Currency tutorials and international finance content.
💡 Best Practices
Do
- Use
₮or₮for the tugrik glyph - Pair with
lang="mn"when content is in Mongolian - Set
charset="UTF-8"on all HTML documents - Add
aria-labelfor screen readers on price-only displays - Pick one entity style per project for consistency
Don’t
- Confuse ₮ (tugrik) with ₸ (tenge) or ₺ (lira)
- Assume every font renders ₮ correctly
- Put CSS escape
\20AEdirectly in HTML text nodes - Expect a named HTML entity for U+20AE—use numeric references
- Use HTML entities in JS (use
\u20AEinstead)
Key Takeaways
Two HTML references both render ₮
₮ ₮For CSS stylesheets, use the escape in the content property
\20AEUnicode U+20AE — TUGRIK SIGN (MNT)
No named entity—use numeric references or CSS escape
Currency Symbols block (U+20A0–U+20CF)
❓ Frequently Asked Questions
₮ (hex), ₮ (decimal), or \20AE in CSS content. There is no named HTML entity. All three produce ₮.U+20AE (TUGRIK SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20AE, decimal 8366. Official symbol for the Mongolian tugrik (MNT).₮ or ₮) go directly in markup. The CSS escape \20AE is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, math operators, punctuation, and more.
8 people found this page helpful
