3

I am creating an app where I need to show square root signs along with numbers. E.g.

  /¯¯¯¯¯¯¯¯¯¯¯
\/  (v^2) / T

I am also looking to show square of a number. Can anyone help in displaying such text. This text comes from a database and can change.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Kaustubh
  • 653
  • 6
  • 21

1 Answers1

5

You can use U+221A - Unicode Square Root.

For squared, use ² U+00B2 - Unicode Superscript Two.

However, I expect that you will have to draw these advanced symbols using standard graphics primitives - text will likely be too limiting for such task.

mvp
  • 111,019
  • 13
  • 122
  • 148