HTML Entity for Cedi Sign (₵)

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

What You'll Learn

How to display the Cedi Sign (₵) in HTML using numeric references and CSS escapes. This character is U+20B5 (CEDI SIGN) in the Currency Symbols block (U+20A0–U+20CF), added in Unicode 4.1 (2005). It is the official currency symbol for the Ghanaian cedi (GHS), divided into 100 pesewas.

There is no named HTML entity for U+20B5. Use ₵, ₵, or \20B5 in CSS content. The cedi currency was introduced in 1965 to replace the Ghanaian pound. Do not confuse ₵ with the cent sign (¢) or other currency glyphs.

⚡ Quick Reference — Cedi Sign

Unicode U+20B5

Currency Symbols block

Hex Code ₵

Hexadecimal reference

HTML Code ₵

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20B5
Hex code       ₵
HTML code      ₵
Named entity   —
CSS code       \20B5
ISO 4217       GHS
1

Complete HTML Example

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

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

🌐 Browser Support

The Cedi Sign entity is supported in all modern browsers:

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

👀 Live Preview

See the Cedi Sign in pricing and financial contexts:

Product price ₵1,250.00
With ISO code ₵250.00 (GHS)
Large glyph
Exchange rate 1 USD = ₵12.50 GHS
Monospace refs &#x20B5; &#8373; \20B5

🧠 How It Works

1

Hexadecimal Code

&#x20B5; uses the Unicode hexadecimal value 20B5 to display the Cedi Sign symbol.

HTML markup
2

Decimal HTML Code

&#8373; uses the decimal Unicode value 8373 to display the same character.

HTML markup
3

CSS Entity

\20B5 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Cedi Sign glyph: . Unicode U+20B5 sits in the Currency Symbols block (U+20A0–U+20CF).

Use Cases

The Cedi Sign (₵) commonly appears in:

💰 Financial websites

Ghanaian cedi amounts, exchange rates, and currency converters.

🛒 E-commerce

Product prices, checkout totals, and payment displays in GHS.

🏦 Banking apps

Account balances, transaction summaries, and Ghana-focused portals.

🌍 African markets

Regional pricing, Ghana market reports, and West African business content.

📄 Invoices & receipts

Formal documents and price lists displaying cedi amounts.

📱 Fintech apps

Payment gateways and Ghana-targeted mobile applications.

♿ Accessibility

Pair with aria-label="Ghanaian cedi" or GHS text for screen readers.

💡 Best Practices

Do

  • Use &#x20B5; or &#8373; for Ghanaian cedi prices
  • Pair with GHS in international or multilingual contexts
  • Use lang="en-GH" on Ghana-focused pages when appropriate
  • Choose fonts that support Currency Symbols (U+20A0–U+20CF)
  • Add aria-label="Ghanaian cedi" when the symbol stands alone

Don’t

  • Confuse ₵ (cedi) with ¢ (cent) or € (euro)
  • Put CSS escape \20B5 inside HTML text nodes
  • Rely on the symbol alone without GHS or accessible text
  • Assume all fonts render U+20B5 consistently on older devices
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML references both render ₵

&#x20B5; &#8373;
2

For CSS stylesheets, use the escape in the content property

\20B5
3

U+20B5 CEDI SIGN — Ghanaian cedi (GHS)

4

Currency Symbols block — Unicode 4.1 (2005)

5

No named HTML entity — use numeric references only

❓ Frequently Asked Questions

Use &#x20B5; (hex), &#8373; (decimal), or \20B5 in CSS content. All produce ₵. There is no named HTML entity.
U+20B5 (CEDI SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20B5, decimal 8373. Official symbol for the Ghanaian cedi (GHS), added in Unicode 4.1 (2005).
For financial websites, Ghanaian currency displays, e-commerce GHS prices, banking applications, invoices, and West African market content.
HTML numeric references (&#8373; or &#x20B5;) go directly in markup. The CSS escape \20B5 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. Use &#x20B5;, &#8373;, or \20B5 in CSS. Pair with “GHS” or “Ghanaian cedi” for clarity and accessibility.

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