Shadowed White Circle

Shortcodes

Copy useful codes for shadowed white circle symbol ❍ to use in websites, apps, blogs, and docs.

Unicode
U+274D
HTML Code
❍n
HEX Code
❍
CSS Code
\274D
JS/JSON
\u274D
Unix/C/PHP/JAVA
0x274D
URL-encode
%E2%9D%8D

Customize Shadowed White Circle

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

  

How to use Shadowed White Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❍</span>
HTML Code:
<span>&#10061;n</span>
HEX Code:
<span>&#x274D;</span>

Add with CSS

.shadowed-white-circle::before {
  content: '\\274D';
}

Set it in JavaScript

document.querySelector('.shadowed-white-circle').textContent = '❍';
copied