Star Equals

Shortcodes

Copy useful codes for star equals symbol ≛ to use in websites, apps, blogs, and docs.

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

Customize Star Equals

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

  

How to use Star Equals Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≛</span>
HTML Code:
<span>&#8795;</span>
HEX Code:
<span>&#x225B;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.star-equals').textContent = '≛';
copied