HTML Entity for Lira Sign (₤)

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

What You'll Learn

How to display the Lira sign (₤) character in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20A4 (LIRA SIGN) in the Currency Symbols block (U+20A0–U+20CF).

Render it with ₤, ₤, or CSS escape \20A4. There is no named HTML entity. This symbol is used in historical and financial contexts referring to the Italian Lira and other lira-denominated currencies.

⚡ Quick Reference — Lira Sign

Unicode U+20A4

Currency Symbols

Hex Code ₤

Hexadecimal reference

HTML Code ₤

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20A4
Hex code       ₤
HTML code      ₤
Named entity   (none)
CSS code       \20A4
Meaning        Lira sign (historical currency symbol)
Block          Currency Symbols (U+20A0–U+20CF)
1

Complete HTML Example

A simple example showing the Lira sign (₤) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20A4";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x20A4;</p>
<p>Symbol (decimal): &#8356;</p>
<p id="point">Symbol (CSS): </p>
<p>Example price: 125 ₤</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Lira sign (₤) is supported in modern browsers. If it doesn’t render, choose a font that supports Currency Symbols:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Lira sign (₤) in common finance and currency contexts:

Large glyph
Price125 ₤
In textBudget: 10,000 ₤ (historical reference)
Numeric refs&#x20A4; &#8356; \20A4

🧠 How It Works

1

Hexadecimal Code

&#x20A4; uses the Unicode hexadecimal value 20A4 to display the symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\20A4 is used in CSS stylesheets, typically in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+20A4 is in Currency Symbols. There is no named HTML entity.

Use Cases

The Lira sign (₤) is commonly used in:

📈 Finance sites

Historical finance articles, reports, and pricing references.

📖 Historical content

Documents referencing the Italian Lira and older currency amounts.

💸 Currency tools

Currency lists, conversion demos, and internationalization tutorials.

🌐 International sites

Multi-currency examples and localized formatting samples.

💳 Invoices

Archival invoices or mockups showing older currency symbols.

📝 Documentation

Reference pages listing Currency Symbols Unicode characters.

💡 Best Practices

Do

  • Use numeric references (&#x20A4; or &#8356;) in HTML for portability
  • Use \20A4 in CSS content when inserting the symbol via pseudo-elements
  • Use the correct symbol: Italian Lira (₤) is U+20A4; Turkish Lira (₺) is U+20BA
  • Ensure your font supports Currency Symbols for consistent rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use the CSS escape \20A4 directly in HTML text nodes
  • Assume users know which “lira” you mean—label the currency in text
  • Mix old and modern currency symbols without context
  • Rely on the glyph alone in accessibility-critical UI
  • Overload pages with many different currency glyphs without typography testing

Key Takeaways

1

Three references render ₤ (no named entity)

&#x20A4; &#8356;
2

For CSS stylesheets, use the escape in the content property

\20A4
3

Unicode U+20A4 — LIRA SIGN

4

Italian Lira (₤) differs from Turkish Lira (₺, U+20BA)

5

Previous: Lightning   Next: HTML Entities

❓ Frequently Asked Questions

Use &#x20A4; (hex), &#8356; (decimal), or \20A4 in CSS content. All produce ₤. There is no named HTML entity.
U+20A4 (LIRA SIGN) in the Currency Symbols block (U+20A0–U+20CF). Hex 20A4, decimal 8356.
In historical and financial content referencing lira-denominated currencies, finance sites, banking UI mockups, and currency symbol reference lists.
HTML references (&#8356; or &#x20A4;) go in markup. The CSS escape \20A4 goes in stylesheets. Both render ₤.
Many currency symbols are not included in the named HTML entity set. Numeric references and CSS escapes are the standard way to render U+20A4.

Explore More HTML Entities!

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