How to put mathematical symbols in TextView, EditText or any other view
String htmlStringWithMathSymbols =
"− + ± × ÷ % ‰ = ≠ ≈ ≡ < > ≤ ≥ ∞ ⅛ ¼ ⅜ ½ ⅝ ¾ ⅞ ∫ ∂ ∆ ∏ ∑ √ ∟ ∩ ∙ ƒ ⁄ "
;
textView.setText(Html.fromHtml(htmlStringWithMathSymbols));