Z Notation Schema Piping

Shortcodes

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

Unicode
U+2A20
HTML Code
⨠
HEX Code
⨠
CSS Code
\2A20
JS/JSON
\u2A20
Unix/C/PHP/JAVA
0x2A20
URL-encode
%E2%A8%A0

Customize Z Notation Schema Piping

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨠</span>
HTML Code:
<span>&#10784;</span>
HEX Code:
<span>&#x2A20;</span>

Add with CSS

.z-notation-schema-piping::before {
  content: '\\2A20';
}

Set it in JavaScript

document.querySelector('.z-notation-schema-piping').textContent = '⨠';
copied