画像に Unicode 文字を重ねようとしていますが、文字が表示されません。
var img = new Image()
img.src = fs.readFileSync(path.join(__dirname, 'images', 'snow.jpg'))
ctx.drawImage(img, 0, 0, 500, 500)
img = new Image()
//img.src = canvas.toBuffer()
ctx.font = "40pt Calibri";
ctx.lineWidth = 1
ctx.strokeStyle = '#ddd'
ctx.fillStyle = '#000'
ctx.fillText('Wahoo', 49, 99)
ctx.rotate(0.5)
ctx.translate(20, -40)
ctx.fillText("Testing", 100, 180)
ctx.rotate(0)
ctx.translate(20, -60)
// Unicode here
ctx.fillText('\u5929\u6c23', 160, 100)
canvas.createPNGStream().pipe(res);`