Upper Right Drop-shadowed White Square

Shortcodes

Copy useful codes for upper right drop-shadowed white square symbol ❐ to use in websites, apps, blogs, and docs.

Unicode
U+2750
HTML Code
❐
HEX Code
❐
CSS Code
\2750
JS/JSON
\u2750
Unix/C/PHP/JAVA
0x2750
URL-encode
%E2%9D%90

Customize Upper Right Drop-shadowed White Square

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

  

How to use Upper Right Drop-shadowed White Square Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❐</span>
HTML Code:
<span>&#10064;</span>
HEX Code:
<span>&#x2750;</span>

Add with CSS

.upper-right-drop-shadowed-white-square::before {
  content: '\\2750';
}

Set it in JavaScript

document.querySelector('.upper-right-drop-shadowed-white-square').textContent = '❐';
copied