Small Asterisk

Shortcodes

Copy and paste codes for Small Asterisk symbol ﹡ to use in your websites, apps, blogs, and more.

Unicode
U+FE61
HTML Code
﹡
HEX Code
﹡
CSS Code
\FE61
JS/JSON
\uFE61
Unix/C/PHP/JAVA
0xFE61
URL-encode
%EF%B9%A1
copied

Customize Small Asterisk Symbol

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

Insert ﹡ Small Asterisk using HTML

1. Copy-paste Small Asterisk directly:
<span>﹡</span>
2. HTML Decimal Code:
<span>&#65121;</span>
3. Hexadecimal Code:
<span>&#xFE61;</span>
Preview:

Add Small Asterisk symbol with CSS

.small-asterisk::before {
    content: '\\FE61';
}
Preview: Small Asterisk

Small Asterisk JavaScript Code

1. Direct Symbol:
document.querySelector('.small-asterisk').textContent = '﹡';
2. Unicode Escape for ﹡:
document.querySelector('.small-asterisk').textContent = '\uFE61';
Preview: