Intersection With Overbar

Shortcodes

Copy useful codes for intersection with overbar symbol ⩃ to use in websites, apps, blogs, and docs.

Unicode
U+2A43
HTML Code
⩃
HEX Code
⩃
CSS Code
\2A43
JS/JSON
\u2A43
Unix/C/PHP/JAVA
0x2A43
URL-encode
%E2%A9%83

Customize Intersection With Overbar

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

  

How to use Intersection With Overbar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩃</span>
HTML Code:
<span>&#10819;</span>
HEX Code:
<span>&#x2A43;</span>

Add with CSS

.intersection-with-overbar::before {
  content: '\\2A43';
}

Set it in JavaScript

document.querySelector('.intersection-with-overbar').textContent = '⩃';
copied