Mongolian Full Stop

Shortcodes

Copy useful codes for mongolian full stop symbol ᠃ to use in websites, apps, blogs, and docs.

Unicode
U+1803
HTML Code
᠃
HEX Code
᠃
CSS Code
\1803
JS/JSON
\u1803
Unix/C/PHP/JAVA
0x1803
URL-encode
%E1%A0%83

Customize Mongolian Full Stop

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

  

How to use Mongolian Full Stop Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>᠃</span>
HTML Code:
<span>&#6147;</span>
HEX Code:
<span>&#x1803;</span>

Add with CSS

.mongolian-full-stop::before {
  content: '\\1803';
}

Set it in JavaScript

document.querySelector('.mongolian-full-stop').textContent = '᠃';
copied