HTML Entity for Hryvnia Sign (₴)

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

What You'll Learn

How to display the Hryvnia Sign (₴) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20B4 (HRYVNIA SIGN) in the Currency Symbols block (U+20A0–U+20CF).

Use ₴, ₴, or CSS \20B4. There is no named HTML entity—numeric codes or CSS escapes are required. Ideal for Ukrainian currency, e-commerce, and financial content.

⚡ Quick Reference — Hryvnia Sign

Unicode U+20B4

Currency Symbols

Hex Code ₴

Hexadecimal reference

HTML Code ₴

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20B4
Hex code       ₴
HTML code      ₴
Named entity   (none)
CSS code       \20B4
Meaning        Ukrainian hryvnia currency symbol
CSS note       \20B4 or \020B4 in content property
1

Complete HTML Example

This example demonstrates the Hryvnia Sign (₴) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20B4";
  }
 </style>
</head>
<body>
<p>Hryvnia Sign using Hexadecimal: &#x20B4;</p>
<p>Hryvnia Sign using Decimal: &#8372;</p>
<p id="point">Hryvnia Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Hryvnia Sign (₴) renders when fonts support Currency Symbols (U+20A0–U+20CF):

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

👀 Live Preview

Hryvnia Sign (₴) in prices and financial content:

Glyph (hex)
Same via decimal
With label 100 ₴
Numeric refs &#x20B4; &#8372; \20B4

🧠 How It Works

1

Hexadecimal Code

&#x20B4; uses Unicode hexadecimal 20B4 to display the Hryvnia Sign in HTML markup.

HTML markup
2

Decimal HTML Code

&#8372; uses decimal Unicode value 8372 for the same character.

HTML markup
3

CSS Entity

\20B4 is used in CSS, typically in the content property of pseudo-elements such as ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+20B4 is in Currency Symbols. Next: Hu.

Use Cases

The Hryvnia Sign (U+20B4) is commonly used in:

💰 Currency

Show prices, balances, and amounts in Ukrainian hryvnia on websites and apps.

🛒 E-commerce

Product prices, checkout totals, and invoices for Ukraine-facing stores.

📈 Finance

Account statements, exchange rates, and financial dashboards.

📄 Invoices

Format amounts with the hryvnia symbol in PDFs and printable documents.

🌐 Localization

Ukrainian-language sites and services that display local currency.

📱 Apps

Payment forms, donation pages, and price input fields in hryvnia.

💡 Best Practices

Do

  • Use &#x20B4; or &#8372; in HTML (no named entity)
  • Choose fonts with Currency Symbols support (Segoe UI, Noto Symbols)
  • Declare UTF-8 with <meta charset="utf-8">
  • Place the symbol after the amount in Ukrainian locale (e.g. 100 ₴)
  • Pair the symbol with “UAH” or “hryvnia” for screen readers when needed
  • Use the same hex or decimal method consistently across a page
  • Test rendering on mobile and desktop browsers

Don’t

  • Expect a named HTML entity for U+20B4
  • Use CSS \20B4 in HTML text nodes
  • Rely on the symbol alone without a text label for screen readers
  • Assume every system font includes U+20B4
  • Skip browser testing for symbol-heavy pages

Key Takeaways

1

Two HTML numeric references plus CSS insert U+20B4

&#x20B4; &#8372;
2

For CSS, use \20B4 in the content property

3

Unicode U+20B4 — HRYVNIA SIGN

4

No named entity—use hex or decimal

5

Next: Hu

❓ Frequently Asked Questions

Use &#x20B4; (hex), &#8372; (decimal), or \20B4 in CSS content. There is no named entity. All three methods render the same glyph (₴).
U+20B4 (HRYVNIA SIGN) in the Currency Symbols block (U+20A0–U+20CF). Hex 20B4, decimal 8372. Currency symbol for the Ukrainian hryvnia.
For Ukrainian currency display, financial and e-commerce sites, price lists and invoices, and any content that requires the Ukrainian hryvnia symbol.
HTML references (&#8372; or &#x20B4;) go directly in markup. The CSS escape \20B4 is used in stylesheets, typically in the content property of pseudo-elements.
No. Use hexadecimal &#x20B4;, decimal &#8372;, or CSS \20B4 in the content property of pseudo-elements.
₴ is the currency symbol for the Ukrainian hryvnia. UAH is the ISO 4217 currency code (Ukrainian Hryvnia). Use ₴ for display (e.g. 100 ₴) and UAH in data or APIs (e.g. amount with currency code “UAH”).
Ensure UTF-8 encoding (<meta charset="utf-8">) and a font that supports Currency Symbols. Try Segoe UI, Noto Symbols, or Arial Unicode MS if the glyph is missing.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, punctuation, 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