Logical And With Dot Above

Shortcodes

Copy useful codes for logical and with dot above symbol ⩑ to use in websites, apps, blogs, and docs.

Unicode
U+2A51
HTML Code
⩑
HEX Code
⩑
CSS Code
\2A51
JS/JSON
\u2A51
Unix/C/PHP/JAVA
0x2A51
URL-encode
%E2%A9%91

Customize Logical And With Dot Above

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

  

How to use Logical And With Dot Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩑</span>
HTML Code:
<span>&#10833;</span>
HEX Code:
<span>&#x2A51;</span>

Add with CSS

.logical-and-with-dot-above::before {
  content: '\\2A51';
}

Set it in JavaScript

document.querySelector('.logical-and-with-dot-above').textContent = '⩑';
copied