Canadian Syllabics Hyphen

Shortcodes

Copy useful codes for canadian syllabics hyphen symbol ᐀ to use in websites, apps, blogs, and docs.

Unicode
U+1400
HTML Code
᐀
HEX Code
᐀
CSS Code
\1400
JS/JSON
\u1400
Unix/C/PHP/JAVA
0x1400
URL-encode
%E1%90%80

Customize Canadian Syllabics Hyphen

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

  

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

Insert in HTML

1. Direct symbol:
<span>᐀</span>
HTML Code:
<span>&#5120;</span>
HEX Code:
<span>&#x1400;</span>

Add with CSS

.canadian-syllabics-hyphen::before {
  content: '\\1400';
}

Set it in JavaScript

document.querySelector('.canadian-syllabics-hyphen').textContent = '᐀';
copied