Flower

Shortcodes

Copy and paste codes for Flower symbol ⚘ to use in your websites, apps, blogs, and more.

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

Customize Flower Symbol

Customize ⚘ symbol as you like and download Flower as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Flower symbol in HTML, CSS, and JS?

Insert ⚘ Flower using HTML

1. Copy-paste Flower directly:
<span>⚘</span>
2. HTML Decimal Code:
<span>&#9880;</span>
3. Hexadecimal Code:
<span>&#x2698;</span>
Preview:

Add Flower symbol with CSS

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

Flower JavaScript Code

1. Direct Symbol:
document.querySelector('.flower').textContent = '⚘';
2. Unicode Escape for ⚘:
document.querySelector('.flower').textContent = '\u2698';
Preview: