我想渲染
http://www.utf8icons.com/character/61505/UTF-8-character
在画布上下文中。这是一个选项吗?
有什么问题?这只是另一个角色。根本不需要使用 fromCharCode 。只需将字符放入您的代码中:
ctx.fillText(""...
或者,如果您的编辑器不支持输入或显示此类字符,那么您可能更喜欢
ctx.filltext("\uF041",
一种方法是使用String.fromCharCode
var canvas = document.getElementById("canvas"),
ctx = canvas.getContext("2d");
canvas.width = canvas.height = 200;
ctx.font="100px Arial";
ctx.fillText(String.fromCharCode(61505), 50,100);