I wanna insert unicode U+2665 in heading of HTML. Thus, I did:
<h2 id="listas">U+2665 listas</h2>
Unfortunately, this generates the following output when rendered by the browser:

I tried using "and percent" with &U+2665. But it did not work out either.
What should I do to fix this?
Thanks.
You can enter any Unicode character using it's hex scalar value in a character entity reference
<h2 id="listas">♥</h2>
That will display as ♥
The other answers were similar, but require converting the Unicode scalar value to decimal. But you can enter it directly in hex.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With