Symbols & Shapes

Star Outline Symbol ()

Outlined five-pointed star representing unselected or empty rating values.

One-Click Copyable Code Formats

HTML Named Entity
☆
HTML Decimal Code
☆
HTML Hex Code
☆
CSS content (\XXXX)
\2606
JavaScript Unicode (\uXXXX)
\u2606
URL Percent Encoded
%E2%98%86

Real-World Implementation Snippets

HTML5 Document
<p>Example: &#9734;</p>
CSS ::before / ::after
.badge::before { content: '\2606 '; }
React JSX / TypeScript
<span>{"\u2606"}</span>
Frequently Asked Questions

Star Outline Symbol (☆) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&#9734;". If using numeric codes, you can use the decimal code "&#9734;" or hex code "&#x2606;".