Tifinagh Separator Mark

Shortcodes

Copy useful codes for tifinagh separator mark symbol ⵰ to use in websites, apps, blogs, and docs.

Unicode
U+2D70
HTML Code
⵰
HEX Code
⵰
CSS Code
\2D70
JS/JSON
\u2D70
Unix/C/PHP/JAVA
0x2D70
URL-encode
%E2%B5%B0

Customize Tifinagh Separator Mark

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

  

How to use Tifinagh Separator Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⵰</span>
HTML Code:
<span>&#11632;</span>
HEX Code:
<span>&#x2D70;</span>

Add with CSS

.tifinagh-separator-mark::before {
  content: '\\2D70';
}

Set it in JavaScript

document.querySelector('.tifinagh-separator-mark').textContent = '⵰';
copied