Flower Punctuation Mark

Shortcodes

Copy and paste codes for Flower Punctuation Mark symbol ⁕ to use in your websites, apps, blogs, and more.

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

Customize Flower Punctuation Mark Symbol

Customize ⁕ symbol as you like and download Flower Punctuation Mark as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Flower Punctuation Mark symbol in HTML, CSS, and JS?

Insert ⁕ Flower Punctuation Mark using HTML

1. Copy-paste Flower Punctuation Mark directly:
<span>⁕</span>
2. HTML Decimal Code:
<span>&#8277;</span>
3. Hexadecimal Code:
<span>&#x2055;</span>
Preview:

Add Flower Punctuation Mark symbol with CSS

.flower-punctuation-mark::before {
    content: '\\2055';
}
Preview: Flower Punctuation Mark

Flower Punctuation Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.flower-punctuation-mark').textContent = '⁕';
2. Unicode Escape for ⁕:
document.querySelector('.flower-punctuation-mark').textContent = '\u2055';
Preview: