HTML Entity for Austral Sign ()

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

What You'll Learn

How to render the Austral sign (, Unicode U+20B3, official name AUSTRAL SIGN) in HTML. The glyph is in the Currency Symbols block. It stood for the Argentine austral (1985–1991)—not the Australian dollar (AUD uses $ or A$ in prose).

There is no standard named HTML entity for U+20B3; use ₳, ₳, or \20B3 in CSS content. In running text, spell out “austral” or the amount so readers and assistive tech are never guessing.

⚡ Quick Reference — Austral Sign (U+20B3)

Unicode U+20B3

Currency Symbols

Hex Code ₳

Hexadecimal reference

HTML Code ₳

Decimal reference

Named Entity

None (use numeric refs)

CSS Code \20B3

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20B3
Hex code       ₳
HTML code      ₳
Named entity   (none)
CSS code       \20B3
1

Complete HTML Example

Hexadecimal, decimal, and CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\20B3";
  }
 </style>
</head>
<body>

<p>Austral Sign using Hexa Decimal: &#x20B3;</p>
<p>Austral Sign using HTML Code: &#8371;</p>
<p id="point">Austral Sign using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

Numeric references for U+20B3 are supported in all modern browsers with Unicode fonts that include the Currency Symbols range:

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

👀 Live Preview

Inline and scale checks (add visible text or aria-label in real UI):

Inline Price 100 (illustrative) · always label the currency in real UI
Large glyph
With label Argentine austral (historical)
Monospace U+20B3 = ₳

🧠 How It Works

1

Hexadecimal code

&#x20B3; encodes U+20B3 with hex digits 20B3.

HTML markup
2

Decimal HTML code

&#8371; is the decimal form of U+20B3 (837110 = 20B316).

HTML markup
3

CSS entity

\20B3 is used in CSS content for pseudo-elements or icon rules.

CSS stylesheet
4

No named entity

HTML does not define &austral; or similar for this code point. Always use numeric references or a CSS escape.

HTML markup
=

Same visual result

All methods reference U+20B3AUSTRAL SIGN.

Use Cases

The Austral sign () appears in historical finance, numismatics, and Unicode currency references:

💰 Historical finance

Articles and datasets about Argentina’s 1985–1991 austral period.

📚 Education

Economics courses comparing hyperinflation episodes and currency reforms.

🧮 Unicode tables

Developer docs listing U+20B3 alongside other currency signs.

💼 Museum & archive sites

Exhibits on banknotes and coins where the historic symbol must render in HTML.

💻 Finance apps

Rare-currency pickers or historical balance sheets that include obsolete units.

♿ Accessibility

Always pair with “austral” or the ISO context your product uses.

🌐 Multilingual

Same code point in UTF-8 for Spanish or English economic content.

💡 Best Practices

Do

  • Choose hex or decimal and keep it consistent site-wide
  • Verify fonts include Currency Symbols (near U+20A0–U+20CF)
  • Use \20B3 only inside CSS content strings
  • State “Argentine austral” (or similar) so readers do not confuse it with Australia
  • Use ISO context or year ranges when showing obsolete money

Don’t

  • Assume a named entity exists (it does not for U+20B3)
  • Use CSS escapes inside HTML text nodes
  • Present as current Australian dollars (it is not)
  • Confuse U+20B3 with other peso or dollar glyphs without checking code points

Key Takeaways

1

Two HTML numeric forms render

&#x20B3; &#8371;
2

CSS: \20B3 in content

\20B3
3

U+20B3 = AUSTRAL SIGN

4

Currency Symbols block — check font coverage

5

No standard named HTML entity; use numeric references

❓ Frequently Asked Questions

Use &#x20B3; (hex), &#8371; (decimal), or \20B3 in CSS content.
U+20B3 (decimal 8371). Official name: AUSTRAL SIGN. It was used for the Argentine austral, not the Australian dollar.
In historical economic writing, museum or banknote content, Unicode reference pages, and educational material about Argentina’s 1985–1991 currency.
HTML references belong in markup; \20B3 belongs in stylesheets. Same character.
No. Use numeric references or a CSS escape.

Explore More HTML Entities!

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