Z‑notation Left Image Bracket

Shortcodes

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

Unicode
U+2987
HTML Code
⦧
HEX Code
⦇
CSS Code
\2987
JS/JSON
\u2987
Unix/C/PHP/JAVA
0x2987
URL-encode
%E2%A6%87

Customize Z‑notation Left Image Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦇</span>
HTML Code:
<span>&#10663;</span>
HEX Code:
<span>&#x2987;</span>

Add with CSS

.z-notation-left-image-bracket::before {
  content: '\\2987';
}

Set it in JavaScript

document.querySelector('.z-notation-left-image-bracket').textContent = '⦇';
copied