Symbols & Shapes

Solid Star Symbol ()

Five-pointed solid star symbol used for rating displays (e.g. ★★★★★ 5.0), favorites, and GitHub repo stars.

One-Click Copyable Code Formats

HTML Named Entity
★
HTML Decimal Code
★
HTML Hex Code
★
CSS content (\XXXX)
\2605
JavaScript Unicode (\uXXXX)
\u2605
URL Percent Encoded
%E2%98%85

Real-World Implementation Snippets

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

Solid Star Symbol (★) HTML Entity FAQ

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

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