Manat Sign

Shortcodes

Copy useful codes for manat sign ₼ to use in websites, apps, blogs, and docs.

Unicode
U+20BC
HTML Code
₼
HEX Code
₼
CSS Code
\20BC
JS/JSON
\u20BC
Unix/C/PHP/JAVA
0x20BC
URL-encode
%E2%82%BC

Customize Manat Sign

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

  

How to use Manat Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>₼</span>
HTML Code:
<span>&#8380;</span>
HEX Code:
<span>&#x20BC;</span>

Add with CSS

.manat-sign::before {
  content: '\\20BC';
}

Set it in JavaScript

document.querySelector('.manat-sign').textContent = '₼';
copied