Intersection With Dot

Shortcodes

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

Unicode
U+2A40
HTML Code
⩀
HEX Code
⩀
CSS Code
\2A40
JS/JSON
\u2A40
Unix/C/PHP/JAVA
0x2A40
URL-encode
%E2%A9%80

Customize Intersection With Dot

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩀</span>
HTML Code:
<span>&#10816;</span>
HEX Code:
<span>&#x2A40;</span>

Add with CSS

.intersection-with-dot::before {
  content: '\\2A40';
}

Set it in JavaScript

document.querySelector('.intersection-with-dot').textContent = '⩀';
copied