Z Notation Type Colon

Shortcodes

Copy useful codes for z notation type colon symbol ⦂ to use in websites, apps, blogs, and docs.

Unicode
U+2982
HTML Code
⦂
HEX Code
⦂
CSS Code
\2982
JS/JSON
\u2982
Unix/C/PHP/JAVA
0x2982
URL-encode
%E2%A6%82

Customize Z Notation Type Colon

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦂</span>
HTML Code:
<span>&#10626;</span>
HEX Code:
<span>&#x2982;</span>

Add with CSS

.z-notation-type-colon::before {
  content: '\\2982';
}

Set it in JavaScript

document.querySelector('.z-notation-type-colon').textContent = '⦂';
copied