Integral Average With Slash

Shortcodes

Copy useful codes for integral average with slash symbol ⨏ to use in websites, apps, blogs, and docs.

Unicode
U+2A0F
HTML Code
⨏
HEX Code
⨏
CSS Code
\2A0F
JS/JSON
\u2A0F
Unix/C/PHP/JAVA
0x2A0F
URL-encode
%E2%A8%8F

Customize Integral Average With Slash

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

  

How to use Integral Average With Slash Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨏</span>
HTML Code:
<span>&#10767;</span>
HEX Code:
<span>&#x2A0F;</span>

Add with CSS

.integral-average-with-slash::before {
  content: '\\2A0F';
}

Set it in JavaScript

document.querySelector('.integral-average-with-slash').textContent = '⨏';
copied