White Florette

Shortcodes

Copy useful codes for white florette symbol ❀ to use in websites, apps, blogs, and docs.

Unicode
U+2740
HTML Code
❀
HEX Code
❀
CSS Code
\2740
JS/JSON
\u2740
Unix/C/PHP/JAVA
0x2740
URL-encode
%E2%9D%80

Customize White Florette

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

  

How to use White Florette Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❀</span>
HTML Code:
<span>&#10048;</span>
HEX Code:
<span>&#x2740;</span>

Add with CSS

.white-florette::before {
  content: '\\2740';
}

Set it in JavaScript

document.querySelector('.white-florette').textContent = '❀';
copied