Mongolian Four Dots

Shortcodes

Copy useful codes for mongolian four dots symbol ᠅ to use in websites, apps, blogs, and docs.

Unicode
U+1805
HTML Code
᠅
HEX Code
᠅
CSS Code
\1805
JS/JSON
\u1805
Unix/C/PHP/JAVA
0x1805
URL-encode
%E1%A0%85

Customize Mongolian Four Dots

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

  

How to use Mongolian Four Dots Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>᠅</span>
HTML Code:
<span>&#6149;</span>
HEX Code:
<span>&#x1805;</span>

Add with CSS

.mongolian-four-dots::before {
  content: '\\1805';
}

Set it in JavaScript

document.querySelector('.mongolian-four-dots').textContent = '᠅';
copied