French Franc Sign

Shortcodes

Copy and paste codes for French Franc Sign symbol ₣ to use in your websites, apps, blogs, and more.

Unicode
U+20A3
HTML Code
₣
HEX Code
₣
CSS Code
\20A3
JS/JSON
\u20A3
Unix/C/PHP/JAVA
0x20A3
URL-encode
%E2%82%A3
copied

Customize French Franc Sign Symbol

Customize ₣ symbol as you like and download French Franc Sign as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add French Franc Sign symbol in HTML, CSS, and JS?

Insert ₣ French Franc Sign using HTML

1. Copy-paste French Franc Sign directly:
<span>₣</span>
2. HTML Decimal Code:
<span>&#8355;</span>
3. Hexadecimal Code:
<span>&#x20A3;</span>
Preview:

Add French Franc Sign symbol with CSS

.french-franc-sign::before {
    content: '\\20A3';
}
Preview: French Franc Sign

French Franc Sign JavaScript Code

1. Direct Symbol:
document.querySelector('.french-franc-sign').textContent = '₣';
2. Unicode Escape for ₣:
document.querySelector('.french-franc-sign').textContent = '\u20A3';
Preview: