Fullwidth Asterisk

Shortcodes

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

Unicode
U+FF0A
HTML Code
*
HEX Code
*
CSS Code
\FF0A
JS/JSON
\uFF0A
Unix/C/PHP/JAVA
0xFF0A
URL-encode
%EF%BC%8A
copied

Customize Fullwidth Asterisk Symbol

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

Insert * Fullwidth Asterisk using HTML

1. Copy-paste Fullwidth Asterisk directly:
<span>*</span>
2. HTML Decimal Code:
<span>&#65290;</span>
3. Hexadecimal Code:
<span>&#xFF0A;</span>
Preview:

Add Fullwidth Asterisk symbol with CSS

.fullwidth-asterisk::before {
    content: '\\FF0A';
}
Preview: Fullwidth Asterisk

Fullwidth Asterisk JavaScript Code

1. Direct Symbol:
document.querySelector('.fullwidth-asterisk').textContent = '*';
2. Unicode Escape for *:
document.querySelector('.fullwidth-asterisk').textContent = '\uFF0A';
Preview: