superscript

Superscript in C++ console output

I'd like to have my program output "cm2" (cm squared). How do make a superscript 2? ...

Using superscript in an Android textSwitcher

I can't manage to get my textSwitcher to be able to support superscript text. No matter what I try it shows up as regular size text. Here is what I've tried: Spanned span = Html.fromHtml("<sup>TM</sup>"); String subscript = span.toString(); mSwitcher.setText(getText(R.string.desc_about1) + subscript); Then I ...