HTML Entity for Colon Sign (₡)

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

What You'll Learn

How to display the Colon Sign (₡) in HTML and CSS. This character is U+20A1 (COLON SIGN) in the Currency Symbols block (U+20A0–U+20CF). It is the official currency symbol for the Costa Rican colón (CRC), not the punctuation colon or math operators.

There is no named HTML entity for U+20A1. Use ₡ or ₡ in markup, or \20A1 in stylesheet content. Do not confuse ₡ with the punctuation colon U+003A (:), Colon Equals U+2254 (≔), or the cent sign U+00A2 (¢).

⚡ Quick Reference — Colon Sign

Unicode U+20A1

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

Hex Code ₡

Hexadecimal reference

HTML Code ₡

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20A1
Hex code       ₡
HTML code      ₡
Named entity   —
CSS code       \20A1
ISO 4217       CRC
1

Complete HTML Example

This example shows U+20A1 using hexadecimal and decimal character references, plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20A1";
  }
 </style>
</head>
<body>
<p>Colon Sign using Hexa Decimal: &#x20A1;</p>
<p>Colon Sign using HTML Code: &#8353;</p>
<p id="point">Colon Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+20A1 is supported in modern browsers; glyph appearance may vary by font:

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

👀 Live Preview

See the Colon Sign in pricing and financial contexts:

Product price ₡25,000.00
With ISO code ₡10,000 (CRC)
Large glyph
vs related characters Currency: ₡ (U+20A1)   Punctuation: : (U+003A)   Colon Equals: ≔ (U+2254)
Monospace refs &#x20A1; &#8353; \20A1

🧠 How It Works

1

Hexadecimal Code

&#x20A1; references code point U+20A1 using hex digits 20A1.

HTML markup
2

Decimal HTML Code

&#8353; is the decimal equivalent (8353) for the same character.

HTML markup
3

CSS Entity

\20A1 is the CSS escape for U+20A1, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Colon Sign glyph: . Unicode U+20A1 sits in Currency Symbols (U+20A0–U+20CF). No named HTML entity exists.

Use Cases

The Colon Sign (₡) commonly appears in:

🛒 E-commerce

Prices in Costa Rican colóns on stores and marketplaces serving Costa Rica.

📊 Financial docs

Invoices, reports, and accounting content for Costa Rica.

✈️ Travel & tourism

Prices, exchange rates, and budgets on travel websites.

🏦 Banking

Balances, transactions, and rates in banking and finance apps.

🌐 Currency tools

Converters and multi-currency displays including CRC.

🔤 Symbol references

Currency symbol glossaries and HTML entity reference pages.

♿ Accessibility

Provide context (e.g. “Costa Rican colón”) so screen readers convey currency meaning.

💡 Best Practices

Do

  • Use &#x20A1; or &#8353; consistently in HTML
  • Pair with CRC or “Costa Rican colón” in multi-currency content
  • Format numbers with appropriate locale for Costa Rica
  • Choose fonts that support Currency Symbols (Segoe UI, Noto Sans)
  • Use \20A1 only inside CSS content, not in HTML text nodes

Don’t

  • Confuse U+20A1 (₡) with punctuation colon (:) or Colon Equals (≔)
  • Use U+020A1 notation—the correct code point is U+20A1
  • Assume a named entity exists—U+20A1 has none
  • Display amounts without clarifying currency in international contexts
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x20A1; &#8353;
2

For CSS stylesheets, use the escape in the content property

\20A1
3

U+20A1 COLON SIGN (Costa Rican colón)

4

ISO 4217 code: CRC

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x20A1; (hex), &#8353; (decimal), or \20A1 in CSS content. There is no named HTML entity for U+20A1.
U+20A1 (COLON SIGN). Currency Symbols (U+20A0–U+20CF). Hex 20A1, decimal 8353. Symbol for the Costa Rican colón (CRC).
In e-commerce and pricing for Costa Rica, financial documents, travel and tourism content, currency converters, and any HTML showing amounts in Costa Rican colóns.
Numeric references (&#8353; or &#x20A1;) go directly in HTML markup. The CSS escape \20A1 is used in stylesheets, typically in the content property of pseudo-elements.
No. U+20A1 ₡ is the Costa Rican currency symbol. The punctuation colon is U+003A (:). Colon Equals U+2254 (≔) is a mathematical operator.

Explore More HTML Entities!

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