HTML Entity for Drachma Sign (₯)

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

What You'll Learn

How to display the Drachma sign (₯) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20AF (DRACHMA SIGN) in the Currency Symbols block (U+20A0–U+20CF). The drachma was Greece’s currency until it was replaced by the euro in 2002; the symbol is still used in historical and academic content.

Render it with ₯, ₯, or CSS escape \20AF. There is no named HTML entity for this symbol. Compare € (euro, U+20AC) or other currency symbols in the same block when documenting money.

⚡ Quick Reference — Drachma Sign

Unicode U+20AF

Currency Symbols block

Hex Code ₯

Hexadecimal reference

HTML Code ₯

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20AF
Hex code       ₯
HTML code      ₯
Named entity   (none)
CSS code       \20AF
Related        U+20AC = Euro sign; U+20A4 = Lira sign
1

Complete HTML Example

This example demonstrates the Drachma Sign (₯) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20AF";
  }
 </style>
</head>
<body>
<p>Drachma Sign using Hexadecimal: &#x20AF;</p>
<p>Drachma Sign using HTML Code: &#8367;</p>
<p id="point">Drachma Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+20AF is supported in modern browsers when rendered with a font that includes Currency Symbols:

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

👀 Live Preview

See the Drachma sign (₯) in historical and financial contexts:

Large glyph
Price (historical) ₯ 1,250
vs euro ₯ drachma   € euro
Caption Amount in drachmas (₯)
Numeric refs &#x20AF; &#8367;

🧠 How It Works

1

Hexadecimal Code

&#x20AF; uses the Unicode hexadecimal value 20AF to display the Drachma Sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\20AF 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: . Unicode U+20AF. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Drachma Sign (₯) is commonly used in:

📚 Historical content

Articles and pages about pre-euro Greek currency and prices.

🎓 Academic work

Economics papers, theses, and references to the drachma era.

📊 Financial history

Museums, archives, and timelines of Greek monetary history.

📄 Documents

Digitized records, invoices, or labels that used the drachma symbol.

📖 Documentation

Developer or editorial docs that list currency code points.

💻 Web design

Symbol pickers and design systems that include legacy currencies.

💡 Best Practices

Do

  • Use &#x20AF; or &#8367; consistently in markup
  • Add aria-label or visible text (e.g. “drachmas”) when the symbol denotes money
  • Pair ₯ with a date range or “historical” context so readers know it is not the euro
  • Use \20AF in CSS ::before / ::after for currency labels in themes
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+20AF
  • Confuse ₯ (drachma) with € (euro) or other currency glyphs in the same block
  • Put CSS escape \20AF in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Currency Symbols glyphs

Key Takeaways

1

Two HTML numeric references render ₯

&#x20AF; &#8367;
2

For CSS stylesheets, use the escape in the content property

\20AF
3

Unicode U+20AF — DRACHMA SIGN

4

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

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x20AF; (hex), &#8367; (decimal), or \20AF in CSS content. There is no named entity. All produce ₯.
U+20AF (DRACHMA SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20AF, decimal 8367. The drachma (₯) was Greece’s currency before the euro.
In historical or academic content about Greek currency, financial history, documents referencing pre-euro Greece, and any content where the Greek drachma symbol is needed.
HTML references (&#8367; or &#x20AF;) go in markup. The CSS escape \20AF is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. The drachma sign uses numeric references only—use &#x20AF; or &#8367; in HTML. It was replaced by the euro in 2002.

Explore More HTML Entities!

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