Reputation: 12295
I would like to render
http://www.utf8icons.com/character/61505/UTF-8-character
Onto a canvas context. Is this an option?
Upvotes: 0
Views: 1327
Reputation:
What's the problem? It's just another character. There's no need to use fromCharCode at all. Just put the character in your code:
ctx.fillText(""...
Or, maybe if your editor doesn't support entry or display of such characters, then you'd prefer
ctx.filltext("\uF041",
Upvotes: 1