插件窝 干货文章 js如何打出二分之一

js如何打出二分之一

strong 方法 使用 fromcharcode 337    来源:    2024-10-19
在 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));
// 输出:½