Z Notation Right Binding Bracket

Shortcodes

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

Unicode
U+298A
HTML Code
⦊
HEX Code
⦊
CSS Code
\298A
JS/JSON
\u298A
Unix/C/PHP/JAVA
0x298A
URL-encode
%E2%A6%8A

Customize Z Notation Right Binding Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦊</span>
HTML Code:
<span>&#10634;</span>
HEX Code:
<span>&#x298A;</span>

Add with CSS

.z-notation-right-binding-bracket::before {
  content: '\\298A';
}

Set it in JavaScript

document.querySelector('.z-notation-right-binding-bracket').textContent = '⦊';
copied