Flower

Shortcodes

Copy useful codes for flower symbol ⚘ to use in websites, apps, blogs, and docs.

Unicode
U+2698
HTML Code
⚘
HEX Code
⚘
CSS Code
\2698
JS/JSON
\u2698
Unix/C/PHP/JAVA
0x2698
URL-encode
%E2%9A%98

Customize Flower

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

  

How to use Flower Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⚘</span>
HTML Code:
<span>&#9880;</span>
HEX Code:
<span>&#x2698;</span>

Add with CSS

.flower::before {
  content: '\\2698';
}

Set it in JavaScript

document.querySelector('.flower').textContent = '⚘';
copied