在java中打印平方根符号(√)

时间:2013-03-28 00:30:20

标签: java unicode printing square-root

我只是想知道如何在Java中打印平方根(√)字符? 我假设你使用它的unicode或什么?

3 个答案:

答案 0 :(得分:7)

简单地

System.out.println("Square Root: \u221A");

来源:first match on Google

答案 1 :(得分:1)

以下是它的unicode编号:http://www.fileformat.info/info/unicode/char/221a/index.htm

然后将它打印到我的文件中:

package com.sandbox;

import org.apache.commons.io.FileUtils;

import java.io.File;
import java.io.IOException;
import java.text.ParseException;

public class Sandbox {

    public static void main(String[] args) throws ParseException, IOException {
        FileUtils.write(new File("out.txt"), "\u221A", "UTF8");
    }


}

当我打开该文件时,其中包含平方根符号。

答案 2 :(得分:1)

有人问过与此相关的问题:

square root character/symbol

查看帖子,看看这是否适合您。该网站也可能为您提供一些答案:

http://java2everyone.blogspot.com/2009/04/square-root-symbol-in-java.html