Z Notation Left Binding Bracket

Shortcodes

Copy useful codes for z notation left binding bracket symbol ⦉ to use in websites, apps, blogs, and docs.

Unicode
U+2989
HTML Code
⦉
HEX Code
⦉
CSS Code
\2989
JS/JSON
\u2989
Unix/C/PHP/JAVA
0x2989
URL-encode
%E2%A6%89

Customize Z Notation Left Binding Bracket

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

  

How to use Z Notation Left Binding Bracket Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦉</span>
HTML Code:
<span>&#10633;</span>
HEX Code:
<span>&#x2989;</span>

Add with CSS

.z-notation-left-binding-bracket::before {
  content: '\\2989';
}

Set it in JavaScript

document.querySelector('.z-notation-left-binding-bracket').textContent = '⦉';
copied