I'm trying to use a variable and \u to create an UTF character with Node.js.
var code = '0045';
console.log('\u0045', '\u' + code);
But the output becomes
E u0045
How do I make it
E E
How do I create the character and store it in a variable?