HTML Entity for Tenge Sign (₸)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+20B8

What You'll Learn

How to display the Tenge Sign (₸) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20B8 (TENGE SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the official symbol for the Kazakhstani tenge (KZT), adopted in 2007.

Render it with ₸, ₸, or CSS escape \20B8. There is no named HTML entity. Do not confuse ₸ with ₽ (ruble, U+20BD) or ₹ (Indian rupee, U+20B9).

⚡ Quick Reference — Tenge Sign

Unicode U+20B8

Currency Symbols

Hex Code ₸

Hexadecimal reference

HTML Code ₸

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20B8
Hex code       ₸
HTML code      ₸
Named entity   (none)
CSS code       \20B8
Block          Currency Symbols (U+20A0–U+20CF)
Currency       Kazakhstani tenge (KZT)
Related        U+20BD = Ruble (₽), U+20B9 = Rupee (₹)
1

Complete HTML Example

This example demonstrates the Tenge Sign (₸) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20B8";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x20B8;</p>
<p>Using HTML Code: &#8376;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Tenge Sign is supported in all modern browsers when fonts include Currency Symbols glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Tenge Sign (₸) in a price context and compared with other regional currency symbols:

Price 15 000 ₸
Large glyph
Regional currencies ₸ tenge   ₽ ruble   ₹ rupee
Numeric refs &#x20B8; &#8376; \20B8

🧠 How It Works

1

Hexadecimal Code

&#x20B8; uses the Unicode hexadecimal value 20B8 to display the Tenge Sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8376; uses the decimal Unicode value 8376 to display the same character.

HTML markup
3

CSS Entity

\20B8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+20B8 in the Currency Symbols block (U+20A0–U+20CF). No named entity.

Use Cases

The Tenge Sign (₸) commonly appears in:

🛒 E-commerce

Online stores and checkout prices in tenge.

🏦 Banking

Account balances and exchange rates in KZT.

📄 Financial Content

Economic reports and Kazakhstan market data.

💰 Currency Converters

Exchange rate tools and financial calculators.

🇳🇰 Local Markets

Kazakhstan-focused business and retail sites.

✈ Travel

Booking platforms with tenge pricing.

📱 Payment Apps

Mobile wallets and payment interfaces.

💡 Best Practices

Do

  • Use &#x20B8; or &#8376; for the tenge glyph
  • Place the symbol after the amount per Kazakh convention (e.g. 1 500 ₸)
  • Add aria-label="Kazakhstani tenge" when the symbol stands alone
  • Pick one style (hex or decimal) per project for consistency
  • Test rendering across browsers and fonts

Don’t

  • Confuse ₸ (tenge) with ₽ (ruble) or ₹ (Indian rupee)
  • Substitute “KZT” or “T” when the official ₸ glyph is required
  • Put CSS escape \20B8 directly in HTML text nodes
  • Expect a named HTML entity for U+20B8—use numeric references
  • Use HTML entities in JS (use \u20B8 instead)

Key Takeaways

1

Two HTML references both render ₸

&#x20B8; &#8376;
2

For CSS stylesheets, use the escape in the content property

\20B8
3

Unicode U+20B8 — TENGE SIGN (KZT)

4

No named entity—use numeric references or CSS escape

5

Part of Currency Symbols alongside ruble (₽) and rupee (₹)

❓ Frequently Asked Questions

Use &#x20B8; (hex), &#8376; (decimal), or \20B8 in CSS content. There is no named HTML entity. All three produce ₸.
U+20B8 (TENGE SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20B8, decimal 8376. Official symbol for the Kazakhstani tenge (KZT).
In e-commerce, financial websites, currency converters, Kazakhstani market sites, travel booking platforms, payment apps, and any content displaying prices or amounts in tenge.
HTML numeric references (&#8376; or &#x20B8;) go directly in markup. The CSS escape \20B8 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ₸ in the Currency Symbols block use numeric hex or decimal references—standard practice for modern currency symbols.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency, symbols, math, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful