White Flower

๐Ÿ’ฎ

Shortcodes

Copy useful codes for white flower symbol ๐Ÿ’ฎ to use in websites, apps, blogs, and docs.

Unicode
U+1F4AE
HTML Code
💮
HEX Code
💮
CSS Code
\1F4AE
JS/JSON
\u1F4AE
Unix/C/PHP/JAVA
0x1F4AE
URL-encode
%F0%9F%92%AE

Customize White Flower

Customize ๐Ÿ’ฎ, download it as SVG or PNG, or copy the generated HTML snippet.

๐Ÿ’ฎ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ’ฎ</span>
HTML Code:
<span>&#128174;</span>
HEX Code:
<span>&#x1F4AE;</span>

Add with CSS

.white-flower::before {
  content: '\\1F4AE';
}

Set it in JavaScript

document.querySelector('.white-flower').textContent = '๐Ÿ’ฎ';
copied