Canadian Syllabics Full Stop

Shortcodes

Copy useful codes for canadian syllabics full stop symbol ᙮ to use in websites, apps, blogs, and docs.

Unicode
U+166E
HTML Code
᙮
HEX Code
᙮
CSS Code
\166E
JS/JSON
\u166E
Unix/C/PHP/JAVA
0x166E
URL-encode
%E1%99%AE

Customize Canadian Syllabics Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>᙮</span>
HTML Code:
<span>&#5742;</span>
HEX Code:
<span>&#x166E;</span>

Add with CSS

.canadian-syllabics-full-stop::before {
  content: '\\166E';
}

Set it in JavaScript

document.querySelector('.canadian-syllabics-full-stop').textContent = '᙮';
copied