Square Lozenge

Shortcodes

Copy useful codes for square lozenge symbol ⌑ to use in websites, apps, blogs, and docs.

Unicode
U+2311
HTML Code
⌑
HEX Code
⌑
CSS Code
\2311
JS/JSON
\u2311
Unix/C/PHP/JAVA
0x2311
URL-encode
%E2%8C%91

Customize Square Lozenge

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

  

How to use Square Lozenge Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌑</span>
HTML Code:
<span>&#8977;</span>
HEX Code:
<span>&#x2311;</span>

Add with CSS

.square-lozenge::before {
  content: '\\2311';
}

Set it in JavaScript

document.querySelector('.square-lozenge').textContent = '⌑';
copied