Transversal Intersection

Shortcodes

Copy useful codes for transversal intersection symbol ⫛ to use in websites, apps, blogs, and docs.

Unicode
U+2ADB
HTML Code
⫛
HEX Code
⫛
CSS Code
\2ADB
JS/JSON
\u2ADB
Unix/C/PHP/JAVA
0x2ADB
URL-encode
%E2%AB%9B

Customize Transversal Intersection

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

  

How to use Transversal Intersection Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫛</span>
HTML Code:
<span>&#10971;</span>
HEX Code:
<span>&#x2ADB;</span>

Add with CSS

.transversal-intersection::before {
  content: '\\2ADB';
}

Set it in JavaScript

document.querySelector('.transversal-intersection').textContent = '⫛';
copied