Tight Trifoliate Snowflake

Shortcodes

Copy useful codes for tight trifoliate snowflake symbol ❅ to use in websites, apps, blogs, and docs.

Unicode
U+2745
HTML Code
❅
HEX Code
❅
CSS Code
\2745
JS/JSON
\u2745
Unix/C/PHP/JAVA
0x2745
URL-encode
%E2%9D%85

Customize Tight Trifoliate Snowflake

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

  

How to use Tight Trifoliate Snowflake Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❅</span>
HTML Code:
<span>&#10053;</span>
HEX Code:
<span>&#x2745;</span>

Add with CSS

.tight-trifoliate-snowflake::before {
  content: '\\2745';
}

Set it in JavaScript

document.querySelector('.tight-trifoliate-snowflake').textContent = '❅';
copied