HTML Entity for French Franc Sign (₣)

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

What You'll Learn

How to display the French Franc sign (₣) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+20A3 (FRENCH FRANC SIGN) in the Currency Symbols block (U+20A0–U+20CF)—the symbol for the former French franc currency.

Render it with ₣, ₣, or CSS escape \20A3. There is no named HTML entity. Do not confuse ₣ with the euro (€, U+20AC, €), the lira (₤, U+20A4), or plain text FRF.

⚡ Quick Reference — French Franc Sign

Unicode U+20A3

Currency Symbols

Hex Code ₣

Hexadecimal reference

HTML Code ₣

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+20A3
Hex code       ₣
HTML code      ₣
Named entity   (none)
CSS code       \20A3
Meaning        French franc sign (former currency)
Related        U+20AC = Euro (€); U+2044 = Fraction slash (⁄)
1

Complete HTML Example

This example demonstrates the French Franc Sign (₣) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\20A3";
  }
 </style>
</head>
<body>
<p>French Franc Sign using Hexadecimal: &#x20A3;</p>
<p>French Franc Sign using HTML Code: &#8355;</p>
<p id="point">French Franc Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The French Franc Sign is widely supported in modern browsers with a suitable font:

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

👀 Live Preview

See the French Franc sign (₣) in historical pricing and compared with related currency symbols:

Historical price 100 ₣   2 500 ₣
Currency pair ₣ franc   € euro (replaced franc in 2002)
Large glyph
Currency symbols ₣ franc   € euro   ₤ lira
Numeric refs &#x20A3; &#8355; \20A3

🧠 How It Works

1

Hexadecimal Code

&#x20A3; uses the Unicode hexadecimal value 20A3 to display the French Franc sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\20A3 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 glyph: . Unicode U+20A3 is in Currency Symbols. For the euro, see Euro Sign (€).

Use Cases

The French Franc Sign (₣) is commonly used in:

📜 Historical content

Articles, archives, and exhibits about the French franc and European monetary history.

📚 Education

Economics, history, and finance courses referencing the former French currency.

💰 Numismatics

Collector sites, currency museums, and financial history resources.

📄 Document reprints

Reproducing old prices, contracts, or labels that used the franc symbol.

🎨 Design

Logos, infographics, and typography that need the ₣ symbol.

🌐 Symbol references

HTML entity lists, Unicode charts, and currency symbol documentation.

💡 Best Practices

Do

  • Use &#8355; or &#x20A3; consistently (no named entity)
  • Add context that the franc was replaced by the euro (2002) in historical pages
  • Supplement with text (e.g. “100 FRF”) for screen reader clarity on amounts
  • Use the CSS escape in ::before / ::after for price lists
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ₣ (franc) with € (euro, U+20AC) or ₤ (lira, U+20A4)
  • Expect a named entity—none exists for U+20A3
  • Put CSS escape \20A3 in HTML text nodes
  • Use ₣ for current French prices (euro is standard today)
  • Skip font checks—ensure Currency Symbols render on target devices

Key Takeaways

1

Two HTML numeric references plus CSS render ₣

&#x20A3; &#8355;
2

For CSS stylesheets, use the escape in the content property

\20A3
3

Unicode U+20A3 — FRENCH FRANC SIGN

4

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

❓ Frequently Asked Questions

Use &#x20A3; (hex), &#8355; (decimal), or \20A3 in CSS content. There is no named entity.
U+20A3 (FRENCH FRANC SIGN). Currency Symbols block (U+20A0–U+20CF). Hex 20A3, decimal 8355. Symbol for the former French franc (₣).
In historical or archival content about the French franc, financial history, educational material, numismatic sites, and design or typography where the ₣ symbol is needed.
HTML references (&#8355; or &#x20A3;) go in markup. The CSS escape \20A3 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
The HTML named character set includes only a subset of symbols. Use &#8355; (decimal) or &#x20A3; (hexadecimal)—both render ₣ in modern browsers.

Explore More HTML Entities!

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