Logical Or With Dot Above

Shortcodes

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

Unicode
U+2A52
HTML Code
⩒
HEX Code
⩒
CSS Code
\2A52
JS/JSON
\u2A52
Unix/C/PHP/JAVA
0x2A52
URL-encode
%E2%A9%92

Customize Logical Or With Dot Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩒</span>
HTML Code:
<span>&#10834;</span>
HEX Code:
<span>&#x2A52;</span>

Add with CSS

.logical-or-with-dot-above::before {
  content: '\\2A52';
}

Set it in JavaScript

document.querySelector('.logical-or-with-dot-above').textContent = '⩒';
copied