I am defining a element in html
<pre id="dict"></pre>
and I am setting the inner html like this
document.getElementById("dict").innerHTML=<p>ಒಂದ್</p>;
but the render is gibberish
ಒಂದà³
expected result
ಒಂದ್
what am i missing here?