French Franc Sign

Shortcodes

Copy useful codes for french franc sign ₣ to use in websites, apps, blogs, and docs.

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

Customize French Franc Sign

Customize ₣, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use French Franc Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₣</span>
HTML Code:
<span>&#8355;</span>
HEX Code:
<span>&#x20A3;</span>

Add with CSS

.french-franc-sign::before {
  content: '\\20A3';
}

Set it in JavaScript

document.querySelector('.french-franc-sign').textContent = '₣';
copied