Flower Punctuation Mark

Shortcodes

Copy useful codes for flower punctuation mark symbol ⁕ to use in websites, apps, blogs, and docs.

Unicode
U+2055
HTML Code
⁕
HEX Code
⁕
CSS Code
\2055
JS/JSON
\u2055
Unix/C/PHP/JAVA
0x2055
URL-encode
%E2%81%95

Customize Flower Punctuation Mark

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

  

How to use Flower Punctuation Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁕</span>
HTML Code:
<span>&#8277;</span>
HEX Code:
<span>&#x2055;</span>

Add with CSS

.flower-punctuation-mark::before {
  content: '\\2055';
}

Set it in JavaScript

document.querySelector('.flower-punctuation-mark').textContent = '⁕';
copied