Double Square Intersection

Shortcodes

Copy useful codes for double square intersection symbol ⩎ to use in websites, apps, blogs, and docs.

Unicode
U+2A4E
HTML Code
⩎
HEX Code
⩎
CSS Code
\2A4E
JS/JSON
\u2A4E
Unix/C/PHP/JAVA
0x2A4E
URL-encode
%E2%A9%8E

Customize Double Square Intersection

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

  

How to use Double Square Intersection Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩎</span>
HTML Code:
<span>&#10830;</span>
HEX Code:
<span>&#x2A4E;</span>

Add with CSS

.double-square-intersection::before {
  content: '\\2A4E';
}

Set it in JavaScript

document.querySelector('.double-square-intersection').textContent = '⩎';
copied