I'm trying to represent a square root in a string in Java, however ...
The Unicode for a square root, which is \u221A, just prints the symbol for a square root - I want it to wrap around my equation like so:
An example of a normal square root equation
But it comes out like this, as expected:
The Unicode symbol for a square root
How can I format my string to represent the square roots as such?
Thanks in advance!