Asterism

Shortcodes

Copy and paste codes for Asterism symbol ⁂ to use in your websites, apps, blogs, and more.

Unicode
U+2042
HTML Code
⁂
HEX Code
⁂
CSS Code
\2042
JS/JSON
\u2042
Unix/C/PHP/JAVA
0x2042
URL-encode
%E2%81%82
copied

Customize Asterism Symbol

Customize ⁂ symbol as you like and download Asterism 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 Asterism symbol in HTML, CSS, and JS?

Insert ⁂ Asterism using HTML

1. Copy-paste Asterism directly:
<span>⁂</span>
2. HTML Decimal Code:
<span>&#8258;</span>
3. Hexadecimal Code:
<span>&#x2042;</span>
Preview:

Add Asterism symbol with CSS

.asterism::before {
    content: '\\2042';
}
Preview: Asterism

Asterism JavaScript Code

1. Direct Symbol:
document.querySelector('.asterism').textContent = '⁂';
2. Unicode Escape for ⁂:
document.querySelector('.asterism').textContent = '\u2042';
Preview: