HTML Entity for Hryvnia Sign (₴)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+20B4

What Is Hryvnia Sign?

Hryvnia sign (₴) is the Unicode character at U+20B4 in Currency Symbols. Official name: HRYVNIA SIGN. It marks the Ukrainian hryvnia (ISO code UAH) in prices and financial text.

Remember
Character     ₴
Unicode       U+20B4
Hex entity    ₴
Decimal       ₴
CSS escape    \20B4
Named entity  (none)
Meaning       Ukrainian hryvnia (UAH)
Not the same  € (€) · £ (£) · ¥ (¥) · UAH

Prefer ₴ or ₴ in HTML (no named form). You can also type ₴ in a UTF-8 document, or fall back to the letters UAH.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity₴HTML markup (preferred)
Decimal entity₴HTML markup
Direct character₴HTML text (UTF-8)
CSS escape\20B4Stylesheet content
ISO text fallbackUAHWhen the glyph is unavailable

When to Use Which

SituationUse
Ukrainian hryvnia price / amount₴ with a visible number (or UAH)
EuroEuro sign — € (€)
US / many dollar currenciesDollar sign — $ / $
Pound sterlingPound sign — £ (£)
Yen / yuan style symbolYen sign — ¥ (¥)
Other currency symbolsRuble, Rupee, Won, Dong
Generated text via ::before / ::aftercontent: "\20B4"

Live Preview

Symbol alone, in a sample price, and next to related currency signs.

Glyph ₴
Large glyph ₴
Sample 100 ₴
Compared ₴   €   £   ¥   $
With entities Hex: ₴ | Decimal: ₴ | Text: UAH

Complete HTML Example

One page that shows hryvnia sign with hex, decimal, CSS escape, a typed character, and an ISO text fallback. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed + UAH

Ways to display ₴ and a plain-text fallback in HTML and CSS.

html
<!DOCTYPE html>
<html lang="uk">
<head>
  <meta charset="UTF-8">
  <title>Hryvnia Sign (U+20B4) in HTML</title>
  <style>
    #point::after {
      content: "\20B4";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x20B4;</p>
  <p>Built with Decimal: &#8372;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ₴</p>
  <p><span aria-label="100 hryvnias">100 &#x20B4;</span></p>
  <p>Fallback text: 100 UAH</p>
  <p>Euro: &euro;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x20B4; inserts code point U+20B4 → ₴.

2. Decimal: same code point as 8372 → &#8372;. Same visual as hex.

3. CSS: use \20B4 in content (not an HTML entity). #point::after appends ₴.

4. Typed / fallback: paste ₴ in a UTF-8 document, or write UAH when you need a letter-code fallback. Prefer aria-label with the amount so screen readers announce a clear price.

Pitfalls & Tips

Common mistakes when working with hryvnia sign.

Name

No named entity

There is no HTML5 named entity for U+20B4. Use &#x20B4; or &#8372;. Do not invent &hryvnia;.

UAH

Symbol vs ISO code

₴ is the currency glyph. UAH is the three-letter ISO code. Both can appear in prices; they are not the same character.

€

Not another currency sign

&euro;, &pound;, &yen;, and $ are different currencies. Use the matching symbol for each amount.

Font

Font coverage

Some fonts omit Currency Symbols. If ₴ is missing, fall back to UAH or a font with U+20B4 coverage.

CSS vs HTML

Do not mix escapes

\20B4 belongs in CSS strings. &#x20B4; / &#8372; belong in HTML.

a11y

Announce the amount

Prefer aria-label with the full amount (for example “100 hryvnias”) so prices are clear when the glyph is unread.

Semicolon

End references

Always finish entities with ; — write &#x20B4;, not &#x20B4.

Browser Support

Hryvnia sign (U+20B4) and its entity forms (&#x20B4;, &#8372;, CSS \\20B4) are supported in all mainstream browsers. Visible glyphs depend on Currency Symbols font coverage.

✓ Universal support

Hryvnia Sign (&#x20B4;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+20B4 Full support

Bottom line: Prefer &#x20B4; in HTML (no named form). Use &#8372; when decimal form is required, and \\20B4 only inside CSS content. Fall back to UAH when needed.

Key Takeaways

  • Unicode: hryvnia sign is U+20B4 (decimal 8372) — glyph ₴.
  • HTML: no named entity — use &#x20B4; / &#8372; / type ₴ (or UAH).
  • CSS: use \20B4 inside content for generated text.
  • Meaning: ₴ ≠ &euro; / $ — Ukrainian hryvnia (UAH).

One line: U+20B4 → &#x20B4; / &#8372; / CSS \20B4 (no named form).

Frequently Asked Questions

Use &#x20B4; (hex), &#8372; (decimal), type ₴ directly in UTF-8, or the CSS escape \20B4 in content. There is no named HTML entity for U+20B4. You can also write the ISO code UAH as plain text.
U+20B4 (HRYVNIA SIGN). Hex 20B4, decimal 8372. It belongs to the Currency Symbols block (U+20A0–U+20CF).
No. HTML5 does not define a named entity for this currency sign. Prefer &#x20B4; or &#8372;. Euro uses &euro;, pound uses &pound;, yen uses &yen;.
Use it for Ukrainian hryvnia prices and financial text. Prefer a visible amount plus the symbol (or UAH). For other currencies, use their dedicated symbols such as &euro; or &pound;.
HTML numeric entities (&#8372; or &#x20B4;) go in markup. The CSS escape \20B4 goes in stylesheet strings (usually content on ::before/::after).
No. Hryvnia sign is the glyph U+20B4 (₴). UAH is the ISO currency code written as letters. &euro; is U+20AC (€). Related money notation — different characters.

Did you know?

Hryvnia sign is Unicode U+20B4 (decimal 8372) — glyph ₴ in Currency Symbols (official name HRYVNIA SIGN). There is no HTML5 named entity; use &#x20B4; or &#8372;. It marks the Ukrainian hryvnia (ISO UAH). Prefer clear amounts such as 100&#x20B4; or fallback text UAH when font coverage is uncertain.

Next: Hu

Learn the HTML entity for Hu (U+0195).

Hu tutorial →

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