Line Integration Not Including The Pole

Shortcodes

Copy useful codes for line integration not including the pole symbol ⨔ to use in websites, apps, blogs, and docs.

Unicode
U+2A14
HTML Code
⨔
HEX Code
⨔
CSS Code
\2A14
JS/JSON
\u2A14
Unix/C/PHP/JAVA
0x2A14
URL-encode
%E2%A8%94

Customize Line Integration Not Including The Pole

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

  

How to use Line Integration Not Including The Pole Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨔</span>
HTML Code:
<span>&#10772;</span>
HEX Code:
<span>&#x2A14;</span>

Add with CSS

.line-integration-not-including-the-pole::before {
  content: '\\2A14';
}

Set it in JavaScript

document.querySelector('.line-integration-not-including-the-pole').textContent = '⨔';
copied