Closed Intersection With Serifs

Shortcodes

Copy useful codes for closed intersection with serifs symbol ⩍ to use in websites, apps, blogs, and docs.

Unicode
U+2A4D
HTML Code
⩍
HEX Code
⩍
CSS Code
\2A4D
JS/JSON
\u2A4D
Unix/C/PHP/JAVA
0x2A4D
URL-encode
%E2%A9%8D

Customize Closed Intersection With Serifs

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩍</span>
HTML Code:
<span>&#10829;</span>
HEX Code:
<span>&#x2A4D;</span>

Add with CSS

.closed-intersection-with-serifs::before {
  content: '\\2A4D';
}

Set it in JavaScript

document.querySelector('.closed-intersection-with-serifs').textContent = '⩍';
copied