Squared Logical Or

Shortcodes

Copy useful codes for squared logical or symbol ⟏ to use in websites, apps, blogs, and docs.

Unicode
U+27CF
HTML Code
⟏
HEX Code
⟏
CSS Code
\27CF
JS/JSON
\u27CF
Unix/C/PHP/JAVA
0x27CF
URL-encode
%E2%9F%8F

Customize Squared Logical Or

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

  

How to use Squared Logical Or Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟏</span>
HTML Code:
<span>&#10191;</span>
HEX Code:
<span>&#x27CF;</span>

Add with CSS

.squared-logical-or::before {
  content: '\\27CF';
}

Set it in JavaScript

document.querySelector('.squared-logical-or').textContent = '⟏';
copied