I have div with HTML character ▲ content like:
<div id="div1">▲</div>
I want to get the content of div1 ie, ▲ in jQuery. I did
$('#div1').html();
But this is returning the character ▲ instead of ▲
How can I get ▲ in jQuery?