Z Notation Domain Antirestriction

Shortcodes

Copy useful codes for z notation domain antirestriction symbol ⩤ to use in websites, apps, blogs, and docs.

Unicode
U+2A64
HTML Code
⩤
HEX Code
⩤
CSS Code
\2A64
JS/JSON
\u2A64
Unix/C/PHP/JAVA
0x2A64
URL-encode
%E2%A9%A4

Customize Z Notation Domain Antirestriction

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

  

How to use Z Notation Domain Antirestriction Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩤</span>
HTML Code:
<span>&#10852;</span>
HEX Code:
<span>&#x2A64;</span>

Add with CSS

.z-notation-domain-antirestriction::before {
  content: '\\2A64';
}

Set it in JavaScript

document.querySelector('.z-notation-domain-antirestriction').textContent = '⩤';
copied