Z Notation Spot

Shortcodes

Copy useful codes for z notation spot symbol ⦁ to use in websites, apps, blogs, and docs.

Unicode
U+2981
HTML Code
⦁
HEX Code
⦁
CSS Code
\2981
JS/JSON
\u2981
Unix/C/PHP/JAVA
0x2981
URL-encode
%E2%A6%81

Customize Z Notation Spot

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

  

How to use Z Notation Spot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦁</span>
HTML Code:
<span>&#10625;</span>
HEX Code:
<span>&#x2981;</span>

Add with CSS

.z-notation-spot::before {
  content: '\\2981';
}

Set it in JavaScript

document.querySelector('.z-notation-spot').textContent = '⦁';
copied