HTML Entity for Livre Tournois Sign (₶)

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

What You'll Learn

How to display the Livre Tournois sign (₶) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20B6 (LIVRE TOURNOIS SIGN) in the Currency Symbols block (U+20A0–U+20CF).

Render it with ₶, ₶, or CSS escape \20B6. There is no named HTML entity. The livre tournois was a medieval French currency unit, so this symbol appears mostly in historical, academic, and numismatic contexts.

⚡ Quick Reference — Livre Tournois Sign

Unicode U+20B6

Currency Symbols

Hex Code ₶

Hexadecimal reference

HTML Code ₶

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20B6
Hex code       ₶
HTML code      ₶
Named entity   (none)
CSS code       \20B6
Meaning        Livre tournois sign (historical French currency)
Block          Currency Symbols (U+20A0–U+20CF)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20B6";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x20B6;</p>
<p>Symbol (decimal): &#8374;</p>
<p id="point">Symbol (CSS): </p>
<p>Example note: 42 ₶ (historical amount)</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Livre Tournois 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 Livre Tournois sign (₶) in historical and academic contexts:

Large glyph
In textThe record lists 42 ₶ in fees.
Compare₤ (lira) vs ₶ (livre tournois)
Numeric refs&#x20B6; &#8374; \20B6

🧠 How It Works

1

Hexadecimal Code

&#x20B6; uses the Unicode hexadecimal value 20B6 to display the symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\20B6 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+20B6 is in Currency Symbols. There is no named HTML entity.

Use Cases

The Livre Tournois sign (₶) is commonly used in:

📖 Medieval history

Texts discussing medieval France and historical economic records.

🏫 Academic writing

Research papers and citations that include currency notation.

💰 Numismatics

Coin references, catalogs, and museum collection descriptions.

📈 Finance history

Articles about historical currencies, trade, and medieval accounting.

📝 Documentation

Unicode and character reference pages for Currency Symbols.

🌐 Web typography

Occasional use in design-heavy pages that reference historical notation.

💡 Best Practices

Do

  • Use numeric references (&#x20B6; or &#8374;) in HTML for portability
  • Use \20B6 in CSS content when inserting the sign via pseudo-elements
  • Label the currency in text when the audience may not recognize ₶
  • Use fonts that support Currency Symbols for consistent rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Use the CSS escape \20B6 directly in HTML text nodes
  • Assume users know what ₶ means without context
  • Mix historical currency symbols without explanation
  • Rely on the symbol alone for accessibility
  • Use ₶ when you actually mean ₤ (lira sign) or modern currencies

Key Takeaways

1

Three references render ₶ (no named entity)

&#x20B6; &#8374;
2

For CSS stylesheets, use the escape in the content property

\20B6
3

Unicode U+20B6 — LIVRE TOURNOIS SIGN

4

Use ₶ mainly for historical and academic references

5

Previous: Lira Sign   Next: HTML Entities

❓ Frequently Asked Questions

Use &#x20B6; (hex), &#8374; (decimal), or \20B6 in CSS content. All produce ₶. There is no named HTML entity.
U+20B6 (LIVRE TOURNOIS SIGN) in Currency Symbols. Hex 20B6, decimal 8374. No named HTML entity.
When writing about medieval French currency, historical finance records, academic notes, and numismatic references.
HTML references (&#8374; or &#x20B6;) go in markup. The CSS escape \20B6 goes in stylesheets. Both render ₶.
Many historical currency symbols are not included in the named HTML entity set. Numeric references and CSS escapes are the standard way to render U+20B6.

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