Upper Right Shadowed White Square

Shortcodes

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

Unicode
U+2752
HTML Code
❒
HEX Code
❒
CSS Code
\2752
JS/JSON
\u2752
Unix/C/PHP/JAVA
0x2752
URL-encode
%E2%9D%92

Customize Upper Right Shadowed White Square

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

  

How to use Upper Right Shadowed White Square Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❒</span>
HTML Code:
<span>&#10066;</span>
HEX Code:
<span>&#x2752;</span>

Add with CSS

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

Set it in JavaScript

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