Small Asterisk

Shortcodes

Copy useful codes for small asterisk symbol ﹡ to use in websites, apps, blogs, and docs.

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

Customize Small Asterisk

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

  

How to use Small Asterisk Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>﹡</span>
HTML Code:
<span>&#65121;</span>
HEX Code:
<span>&#xFE61;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.small-asterisk').textContent = '﹡';
copied