Z‑notation Right Image Bracket

Shortcodes

Copy useful codes for z‑notation right image bracket symbol ⦈ to use in websites, apps, blogs, and docs.

Unicode
U+2988
HTML Code
⦨
HEX Code
⦈
CSS Code
\2988
JS/JSON
\u2988
Unix/C/PHP/JAVA
0x2988
URL-encode
%E2%A6%88

Customize Z‑notation Right Image Bracket

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

  

How to use Z‑notation Right Image Bracket Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦈</span>
HTML Code:
<span>&#10664;</span>
HEX Code:
<span>&#x2988;</span>

Add with CSS

.z-notation-right-image-bracket::before {
  content: '\\2988';
}

Set it in JavaScript

document.querySelector('.z-notation-right-image-bracket').textContent = '⦈';
copied