HTML Entity for Livre Tournois Sign (₶)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+20B6

What Is the Livre Tournois Sign Entity?

Livre Tournois Sign (₶) is the Currency Symbols character at Unicode U+20B6 (LIVRE TOURNOIS SIGN). It denotes the historical French livre tournois currency unit.

Remember
Character     ₶
Unicode       U+20B6
Hex entity    ₶
Decimal       ₶
Named entity  (none)
CSS escape    \20B6
Not the same  £ (£) · ₣ (₣) · € (€)

Hex, decimal, CSS, and a typed character all produce the same glyph: ₶. Prefer ₶ when you want an explicit entity. There is no named HTML form.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity₶HTML markup (best entity default)
Decimal entity₶HTML markup
Named entityNoneHTML5 does not define one
CSS escape\20B6Stylesheet content
Direct character₶UTF-8 HTML text

When to Use Which

SituationUse
Readable numeric entity in HTML₶
Decimal entity required₶
Generated text via ::before / ::aftercontent: "\20B6"
French franc (₣)Use French Franc Sign (U+20A3)
Pound sterling (£)Use £ (U+00A3)

Live Preview

Livre Tournois Sign in common historical-currency contexts.

Amount 42 ₶
Large glyph ₶
Hex entity ₶ → ₶
vs £ / ₣ / € ₶  |  £  |  ₣  |  €
With entities Hex: ₶ | Decimal: ₶

Complete HTML Example

One page that shows this symbol with hex, decimal, and CSS. Use View Output or open the live editor.

Hex + Decimal + CSS

Three ways to produce ₶ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Livre Tournois Sign (₶)</title>
  <style>
    #point::after {
      content: "\20B6";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x20B6;</p>
  <p>Using HTML Code: &#8374;</p>
  <p id="point">Using CSS Entity: </p>
  <p><code>42 &#x20B6;</code></p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+20B6 → &#x20B6; in HTML. The browser turns it into ₶.

2. Decimal: same code point as 8374 → &#8374;. Same result as hex.

3. Named: HTML5 does not define a named entity for this character — use hex or decimal instead.

4. CSS: use \20B6 in content (not an HTML entity). #point::after appends that ₶ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with Livre Tournois Sign.

Look-alikes

₶ ≠ £ ≠ ₣

Pound and French franc are different Unicode characters. Use U+20B6 only when you specifically need the livre tournois sign.

Named

No &…; name

Do not invent a name such as &livre;. Use &#x20B6; or &#8374;.

Fonts

Currency glyph coverage

U+20B6 is less common than € or £. Prefer a font with Currency Symbols coverage if the glyph is critical.

CSS vs HTML

Do not mix escapes

\20B6 belongs in CSS. &#x20B6; / &#8374; belong in HTML.

A11y

Add nearby words

Pair the glyph with an amount (for example 42 &#x20B6;) or use aria-label when it stands alone.

Semicolon

End references

Always finish with ; — write &#x20B6;, not &#x20B6.

Browser Support

Livre Tournois Sign (U+20B6) and its entity forms (&#x20B6;, &#8374;, CSS \\20B6) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Livre Tournois Sign (&#x20B6;)

Encode with hex, decimal, or CSS escape — or type ₶ directly in UTF-8 HTML. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+20B6 Full support

Bottom line: Prefer &#x20B6; for readable HTML. Use \\20B6 only inside CSS content.

Key Takeaways

  • Unicode: this symbol is U+20B6 (decimal 8374).
  • HTML: prefer &#x20B6; — or use &#8374;. No named entity.
  • CSS: use \20B6 inside content for generated text.
  • Watch out: U+20B6 ≠ &pound; ≠ French franc (₣).

One line: U+20B6 → &#x20B6; / &#8374; / CSS \20B6 (no named entity).

Frequently Asked Questions

Use &#x20B6; (hex), &#8374; (decimal), or the CSS escape \20B6 in the content property. All render ₶ when the font supports Currency Symbols. There is no named HTML entity.
U+20B6 (LIVRE TOURNOIS SIGN). Hex 20B6, decimal 8374. It belongs to Currency Symbols (U+20A0–U+20CF).
No. HTML5 does not define a named entity for U+20B6. Use numeric references like &#x20B6; or &#8374;.
Use it for historical French currency amounts, medieval finance references, and academic or numismatic content that specifically needs U+20B6.
HTML entities (&#8374; or &#x20B6;) go in markup. The CSS escape \20B6 is used in stylesheets (usually in the content property of ::before/::after). Both render ₶.
No. £ is the pound sign (&pound;, U+00A3). ₣ is the French franc sign (U+20A3). U+20B6 (₶) is the dedicated livre tournois currency symbol.

Did you know?

Livre Tournois Sign is Unicode U+20B6 (decimal 8374) — LIVRE TOURNOIS SIGN in Currency Symbols. HTML5 has no named entity — use &#x20B6; or &#8374;. The livre tournois was a medieval French currency unit (used roughly from the 13th–18th centuries).

Next: Lj

Learn the HTML entity for Lj — next in this sequence.

Continue tutorial →

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