Bouquet

๐Ÿ’

Shortcodes

Copy useful codes for bouquet symbol ๐Ÿ’ to use in websites, apps, blogs, and docs.

Unicode
U+1F490
HTML Code
💐
HEX Code
💐
CSS Code
\1F490
JS/JSON
\u1F490
Unix/C/PHP/JAVA
0x1F490
URL-encode
%F0%9F%92%90

Customize Bouquet

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

๐Ÿ’
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ’</span>
HTML Code:
<span>&#128144;</span>
HEX Code:
<span>&#x1F490;</span>

Add with CSS

.bouquet::before {
  content: '\\1F490';
}

Set it in JavaScript

document.querySelector('.bouquet').textContent = '๐Ÿ’';
copied