HTML Entity for Cruzeiro Sign (₢)

What You'll Learn
How to display the Cruzeiro sign (₢) in HTML and CSS. This character is U+20A2 (CRUZEIRO SIGN) in the Currency Symbols block (U+20A0–U+20CF). It was used for the former Brazilian Cruzeiro currency—not the Costa Rican Colon Sign (₡) or the cent sign Cent Sign (¢).
There is no named HTML entity for U+20A2. Use ₢, ₢, or \20A2 in CSS content. Do not confuse ₢ with punctuation colon U+003A (:) or other currency symbols in the same Unicode block.
⚡ Quick Reference — Cruzeiro Sign
U+20A2Currency Symbols (U+20A0–U+20CF)
₢Hexadecimal reference
₢Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+20A2
Hex code ₢
HTML code ₢
Named entity —
CSS code \20A2Complete HTML Example
This example shows U+20A2 using hexadecimal and decimal character references, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\20A2";
}
</style>
</head>
<body>
<p>Cruzeiro Sign using Hexadecimal: ₢</p>
<p>Cruzeiro Sign using HTML Code: ₢</p>
<p id="point">Cruzeiro Sign using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+20A2 is supported in modern browsers; use a font with good Currency Symbols coverage:
👀 Live Preview
See the Cruzeiro Sign (₢) in context:
🧠 How It Works
Hexadecimal Code
₢ references code point U+20A2 using hex digits 20A2.
Decimal HTML Code
₢ is the decimal equivalent (8354) for the same character.
CSS Entity
\20A2 is the CSS escape for U+20A2, used in the content property of ::before or ::after.
Same visual result
All three methods produce the Cruzeiro Sign glyph: ₢. Unicode U+20A2 is in Currency Symbols (U+20A0–U+20CF). No named HTML entity exists.
Use Cases
Cruzeiro Sign (₢) commonly appears in:
Documentation about the former Brazilian Cruzeiro and economic history.
Coin catalogs, collections, currency comparison tools, and financial history articles.
Economics and history courses, currency guides, and tutorials on historical currencies.
Regional websites, cultural content, and Brazilian economic history references.
Unicode tables, HTML entity guides, and currency symbol documentation.
Apps or sites showing historical or multiple currency symbols for comparison.
Provide context (e.g. “Brazilian cruzeiro”) so screen readers convey currency meaning.
💡 Best Practices
Do
- Use
₢or₢for the cruzeiro sign - Choose fonts that support Currency Symbols (Segoe UI, Noto Sans)
- Pair with “Brazilian cruzeiro” or historical context in multi-currency content
- Format historical amounts with appropriate locale conventions
- Use
\20A2only inside CSScontent
Don’t
- Confuse U+20A2 (₢) with Colon Sign ₡ or Cent Sign ¢
- Confuse ₢ with punctuation colon (:)
- Assume a named entity exists—U+20A2 has none
- Put CSS escape
\20A2in HTML text nodes - Display amounts without clarifying currency in international contexts
Key Takeaways
No named entity—use numeric references
₢ ₢For CSS stylesheets, use the escape in the content property
\20A2U+20A2 CRUZEIRO SIGN (former Brazilian cruzeiro)
Currency Symbols block (U+20A0–U+20CF)
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
₢ (hex), ₢ (decimal), or \20A2 in CSS content. There is no named HTML entity for U+20A2.U+20A2 (Cruzeiro Sign). Currency Symbols (U+20A0–U+20CF). Hex 20A2, decimal 8354.₢ or ₢) go in markup. The CSS escape \20A2 is used in stylesheets, typically in the content property of pseudo-elements. Both render ₢.₢ or ₢. See Colon Sign and Cedi Sign for related currency symbols.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, arrows, and more.
8 people found this page helpful
