Tugrik Sign

Shortcodes

Copy useful codes for tugrik sign ₮ to use in websites, apps, blogs, and docs.

Unicode
U+20AE
HTML Code
₮
HEX Code
₮
CSS Code
\20AE
JS/JSON
\u20AE
Unix/C/PHP/JAVA
0x20AE
URL-encode
%E2%82%AE

Customize Tugrik Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>₮</span>
HTML Code:
<span>&#8366;</span>
HEX Code:
<span>&#x20AE;</span>

Add with CSS

.tugrik-sign::before {
  content: '\\20AE';
}

Set it in JavaScript

document.querySelector('.tugrik-sign').textContent = '₮';
copied