HTML Entity for Manat Sign (₼)

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

What You'll Learn

How to display the Manat sign (₼) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20BC (MANAT SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the official currency symbol for the Azerbaijani manat (AZN).

Render it with ₼, ₼, or CSS escape \20BC. There is no named HTML entity for U+20BC. In UTF-8 you can also type ₼ directly when your editor supports it.

⚡ Quick Reference — Manat Sign

Unicode U+20BC

Currency Symbols block

Hex Code ₼

Hexadecimal reference

HTML Code ₼

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20BC
Hex code       ₼
HTML code      ₼
Named entity   (none)
CSS code       \20BC
Currency       AZN (Azerbaijani manat)
Related        U+0024 = dollar ($); U+20BD = ruble (₽)
1

Complete HTML Example

This example demonstrates the Manat sign (₼) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\20BC";
  }
 </style>
</head>
<body>
<p>Manat Sign using Hexadecimal: &#x20BC;</p>
<p>Manat Sign using HTML Code: &#8380;</p>
<p id="point">Manat Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+20BC is supported in modern browsers when rendered with a Unicode-capable font:

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

👀 Live Preview

See the Manat sign (₼) in pricing and currency contexts:

Price tag ₼ 49.99
Large glyph
With amount Total: 1,250.00 ₼ AZN
Currency codes Symbol ₼   ISO AZN
Numeric refs &#x20BC; &#8380;

🧠 How It Works

1

Hexadecimal Code

&#x20BC; uses the Unicode hexadecimal value 20BC to display the Manat sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+20BC sits in the Currency Symbols block (U+20A0–U+20CF). No named HTML entity—use numeric codes in markup.

Use Cases

The Manat sign (₼) is commonly used in:

🛒 E-commerce

Product prices and checkout totals on Azerbaijani online stores.

💰 Financial apps

Banking dashboards, account balances, and transaction lists in AZN.

📈 Pricing tables

SaaS plans, subscription tiers, and service quotes in manat.

🌐 Currency converters

Exchange-rate widgets and travel finance tools listing AZN.

📄 Invoices & receipts

PDF and web invoices for businesses operating in Azerbaijan.

📝 News & media

Economic reports and articles referencing the Azerbaijani manat.

💡 Best Practices

Do

  • Use &#x20BC; or &#8380; consistently per project
  • Pair ₼ with the ISO code AZN for clarity in international contexts
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Use aria-label such as “Azerbaijani manat” for screen readers
  • Test currency glyph rendering across browsers and fonts

Don’t

  • Confuse ₼ (manat) with ₽ (ruble) or mn text shorthand
  • Expect a named entity—none exists for U+20BC
  • Put CSS escape \20BC in HTML text nodes
  • Use padded Unicode notation like U+020BC—the correct value is U+20BC
  • Rely on the symbol alone without locale-appropriate number formatting

Key Takeaways

1

Two HTML numeric references render ₼

&#x20BC; &#8380;
2

For CSS stylesheets, use the escape in the content property

\20BC
3

Unicode U+20BC — MANAT SIGN for Azerbaijani manat (AZN)

4

Currency Symbols block (U+20A0–U+20CF)

5

No named entity—use numeric codes or UTF-8 literal in source files

❓ Frequently Asked Questions

Use &#x20BC; (hex), &#8380; (decimal), or \20BC in CSS content. All produce ₼. There is no named entity.
U+20BC (MANAT SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20BC, decimal 8380. Official symbol for the Azerbaijani manat (AZN).
On Azerbaijani e-commerce sites, financial dashboards, pricing tables, banking apps, currency converters, invoices, and any content displaying amounts in AZN.
HTML references (&#8380; or &#x20BC;) go directly in markup. The CSS escape \20BC is used in stylesheets, typically in the content property of pseudo-elements for price prefixes. Same visual result, different layers of the stack.
No. U+20BC has no named HTML entity. Use &#x20BC; or &#8380;, or type ₼ directly in UTF-8-encoded source files.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, math operators, arrows, 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