Blossom

๐ŸŒผ

Shortcodes

Copy useful codes for blossom symbol ๐ŸŒผ to use in websites, apps, blogs, and docs.

Unicode
U+1F33C
HTML Code
🌼
HEX Code
🌼
CSS Code
\1F33C
JS/JSON
\u1F33C
Unix/C/PHP/JAVA
0x1F33C
URL-encode
%F0%9F%8C%BC

Customize Blossom

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

๐ŸŒผ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ŸŒผ</span>
HTML Code:
<span>&#127804;</span>
HEX Code:
<span>&#x1F33C;</span>

Add with CSS

.blossom::before {
  content: '\\1F33C';
}

Set it in JavaScript

document.querySelector('.blossom').textContent = '๐ŸŒผ';
copied