Print a square root symbol (√) in java
java, printing, square-root, unicode
Solution
Simply
System.out.println("Square Root: \u221A");
Source: first match on Google.
Problem
I am just wondering how do you print a square root(√) character in Java? I am assuming you use its unicode or something?