It would be something like that:
<h2 id="listas">♥ listas</h2>
You can check the HTML entity in pages like this one
https://www.compart.com/en/unicode/U+2665
Preview:
https://jsfiddle.net/0mne9kL1/
It would be something like that:
<h2 id="listas">♥ listas</h2>
You can check the HTML entity in pages like this one
https://www.compart.com/en/unicode/U+2665
Preview:
https://jsfiddle.net/0mne9kL1/
<h2>♥</h2>
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.
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.