Star Equals

Shortcodes

Copy and paste codes for Star Equals symbol ≛ to use in your websites, apps, blogs, and more.

Unicode
U+225B
HTML Code
≛
HEX Code
≛
CSS Code
\225B
JS/JSON
\u225B
Unix/C/PHP/JAVA
0x225B
URL-encode
%E2%89%9B
copied

Customize Star Equals Symbol

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

Insert ≛ Star Equals using HTML

1. Copy-paste Star Equals directly:
<span>≛</span>
2. HTML Decimal Code:
<span>&#8795;</span>
3. Hexadecimal Code:
<span>&#x225B;</span>
Preview:

Add Star Equals symbol with CSS

.star-equals::before {
    content: '\\225B';
}
Preview: Star Equals

Star Equals JavaScript Code

1. Direct Symbol:
document.querySelector('.star-equals').textContent = '≛';
2. Unicode Escape for ≛:
document.querySelector('.star-equals').textContent = '\u225B';
Preview: