White Four Pointed Star

Shortcodes

Copy useful codes for white four pointed star symbol ✧ to use in websites, apps, blogs, and docs.

Unicode
U+2727
HTML Code
✧
HEX Code
✧
CSS Code
\2727
JS/JSON
\u2727
Unix/C/PHP/JAVA
0x2727
URL-encode
%E2%9C%A7

Customize White Four Pointed Star

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

  

How to use White Four Pointed Star Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✧</span>
HTML Code:
<span>&#10023;</span>
HEX Code:
<span>&#x2727;</span>

Add with CSS

.white-four-pointed-star::before {
  content: '\\2727';
}

Set it in JavaScript

document.querySelector('.white-four-pointed-star').textContent = '✧';
copied