I am confused about html text that I need to decode before I display it to the user. I do:
result= Html.fromHtml(temp).toString();
where te
The \n0006 is Unicode which is not getting translated. Suggestion:
String temp = "B \u0026 M Collision Repair"; String result = Html.fromHtml(temp).toString();