js如何打出二分之一

原创
ithorizon 1个月前 (10-18) 阅读数 35 #Javascript
在 javascript 中打出二分之一分号的方法有:使用 html 实体引用:"½"使用 unicode 转义序列:"\u00bd"使用 string.fromcharcode() 方法:string.fromcharcode(189)

如何在 JS 中打出二分之一

在 JavaScript 中打出二分之一分号,可以使用以下方法:

方法 1:使用 HTML 实体引用

console.log("½");
// 输出:½

方法 2:使用 Unicode 转义序列

console.log("\u00BD");
// 输出:½

方法 3:使用 String.fromCharCode() 方法

console.log(String.fromCharCode(189));
// 输出:½

以上就是js如何打出二分之一的详细内容,更多请关注IT视界其它相关文章!



热门