Or With Dot Inside

Shortcodes

Copy useful codes for or with dot inside symbol ⟇ to use in websites, apps, blogs, and docs.

Unicode
U+27C7
HTML Code
⟇
HEX Code
⟇
CSS Code
\27C7
JS/JSON
\u27C7
Unix/C/PHP/JAVA
0x27C7
URL-encode
%E2%9F%87

Customize Or With Dot Inside

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟇</span>
HTML Code:
<span>&#10183;</span>
HEX Code:
<span>&#x27C7;</span>

Add with CSS

.or-with-dot-inside::before {
  content: '\\27C7';
}

Set it in JavaScript

document.querySelector('.or-with-dot-inside').textContent = '⟇';
copied