How to show superscript symbol in .NET GUI shortcuts?

Is it possible to build a string or correct a label in the GUI so that I get information about the square meter for the user. So the output will look like 21 m2, but 2 are raised.

Hi

+7
string c #
source share
3 answers

Use the Β² symbol: 21 mΒ²

Unicode code point is U + 00B2, and UTF-8 hexadecimal is c2 b2

+5
source share

Use a font with the Β² symbol.

For example, MS Sans Serif: 0xB2

+1
source share

In the label, use the HTML " ² " link to the superscript in m & sup2 ;.

+1
source share

All Articles