Z Notation Schema Composition

Shortcodes

Copy useful codes for z notation schema composition symbol ⨟ to use in websites, apps, blogs, and docs.

Unicode
U+2A1F
HTML Code
⨟
HEX Code
⨟
CSS Code
\2A1F
JS/JSON
\u2A1F
Unix/C/PHP/JAVA
0x2A1F
URL-encode
%E2%A8%9F

Customize Z Notation Schema Composition

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨟</span>
HTML Code:
<span>&#10783;</span>
HEX Code:
<span>&#x2A1F;</span>

Add with CSS

.z-notation-schema-composition::before {
  content: '\\2A1F';
}

Set it in JavaScript

document.querySelector('.z-notation-schema-composition').textContent = '⨟';
copied