Mongolian Manchu Full Stop

Shortcodes

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

Unicode
U+1809
HTML Code
᠉
HEX Code
᠉
CSS Code
\1809
JS/JSON
\u1809
Unix/C/PHP/JAVA
0x1809
URL-encode
%E1%A0%89

Customize Mongolian Manchu Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>᠉</span>
HTML Code:
<span>&#6153;</span>
HEX Code:
<span>&#x1809;</span>

Add with CSS

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

Set it in JavaScript

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