Symbols & Shapes

Heart Symbol ()

The solid heart card suit symbol, universally used in web footers ("Made with ♥") and social like reactions.

One-Click Copyable Code Formats

HTML Named Entity
♥
HTML Decimal Code
♥
HTML Hex Code
♥
CSS content (\XXXX)
\2665
JavaScript Unicode (\uXXXX)
\u2665
URL Percent Encoded
%E2%99%A5

Real-World Implementation Snippets

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

Heart Symbol (♥) HTML Entity FAQ

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

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