Livre Tournois Sign

Shortcodes

Copy useful codes for livre tournois sign ₶ to use in websites, apps, blogs, and docs.

Unicode
U+20B6
HTML Code
₶
HEX Code
₶
CSS Code
\20B6
JS/JSON
\u20B6
Unix/C/PHP/JAVA
0x20B6
URL-encode
%E2%82%B6

Customize Livre Tournois Sign

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

  

How to use Livre Tournois Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₶</span>
HTML Code:
<span>&#8374;</span>
HEX Code:
<span>&#x20B6;</span>

Add with CSS

.livre-tournois-sign::before {
  content: '\\20B6';
}

Set it in JavaScript

document.querySelector('.livre-tournois-sign').textContent = '₶';
copied