Having this HTML block in a React app:
<div className="my-class" title={myValue}>
<div>{myValue}</div>
</div>
The content of myValue
is MyCompany™
.
The inner div is showing the content correctly.
But the title, which appears when hover, replaces ™ with ™
and shows it like this: MyCompany™
.
Why is this happening for the title? Is there a way to fix it?