Z Notation Relational Composition

Shortcodes

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

Unicode
U+2A3E
HTML Code
⨾
HEX Code
⨾
CSS Code
\2A3E
JS/JSON
\u2A3E
Unix/C/PHP/JAVA
0x2A3E
URL-encode
%E2%A8%BE

Customize Z Notation Relational Composition

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨾</span>
HTML Code:
<span>&#10814;</span>
HEX Code:
<span>&#x2A3E;</span>

Add with CSS

.z-notation-relational-composition::before {
  content: '\\2A3E';
}

Set it in JavaScript

document.querySelector('.z-notation-relational-composition').textContent = '⨾';
copied