Circled Open Centre Eight Pointed Star

Shortcodes

Copy useful codes for circled open centre eight pointed star symbol ❂ to use in websites, apps, blogs, and docs.

Unicode
U+2742
HTML Code
❂
HEX Code
❂
CSS Code
\2742
JS/JSON
\u2742
Unix/C/PHP/JAVA
0x2742
URL-encode
%E2%9C%A2

Customize Circled Open Centre Eight Pointed Star

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

  

How to use Circled Open Centre Eight Pointed Star Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❂</span>
HTML Code:
<span>&#10050;</span>
HEX Code:
<span>&#x2742;</span>

Add with CSS

.circled-open-centre-eight-pointed-star::before {
  content: '\\2742';
}

Set it in JavaScript

document.querySelector('.circled-open-centre-eight-pointed-star').textContent = '❂';
copied