Quaternion Integral Operator

Shortcodes

Copy useful codes for quaternion integral operator symbol ⨖ to use in websites, apps, blogs, and docs.

Unicode
U+2A16
HTML Code
⨖
HEX Code
⨖
CSS Code
\2A16
JS/JSON
\u2A16
Unix/C/PHP/JAVA
0x2A16
URL-encode
%E2%A8%96

Customize Quaternion Integral Operator

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

  

How to use Quaternion Integral Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨖</span>
HTML Code:
<span>&#10774;</span>
HEX Code:
<span>&#x2A16;</span>

Add with CSS

.quaternion-integral-operator::before {
  content: '\\2A16';
}

Set it in JavaScript

document.querySelector('.quaternion-integral-operator').textContent = '⨖';
copied