Intersection Beside And Joined With Intersection

Shortcodes

Copy useful codes for intersection beside and joined with intersection symbol ⩋ to use in websites, apps, blogs, and docs.

Unicode
U+2A4B
HTML Code
⩋
HEX Code
⩋
CSS Code
\2A4B
JS/JSON
\u2A4B
Unix/C/PHP/JAVA
0x2A4B
URL-encode
%E2%A9%8B

Customize Intersection Beside And Joined With Intersection

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

  

How to use Intersection Beside And Joined With Intersection Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩋</span>
HTML Code:
<span>&#10827;</span>
HEX Code:
<span>&#x2A4B;</span>

Add with CSS

.intersection-beside-and-joined-with-intersection::before {
  content: '\\2A4B';
}

Set it in JavaScript

document.querySelector('.intersection-beside-and-joined-with-intersection').textContent = '⩋';
copied