Z Notation Bag Membership

Shortcodes

Copy useful codes for z notation bag membership symbol ⋿ to use in websites, apps, blogs, and docs.

Unicode
U+22FF
HTML Code
⋿
HEX Code
⋿
CSS Code
\22FF
JS/JSON
\u22FF
Unix/C/PHP/JAVA
0x22FF
URL-encode
%E2%8B%BF

Customize Z Notation Bag Membership

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

  

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

Insert in HTML

1. Direct symbol:
<span>⋿</span>
HTML Code:
<span>&#8959;</span>
HEX Code:
<span>&#x22FF;</span>

Add with CSS

.z-notation-bag-membership::before {
  content: '\\22FF';
}

Set it in JavaScript

document.querySelector('.z-notation-bag-membership').textContent = '⋿';
copied