Renderizar HTML sin procesar en respuesta con Express

res.set('Content-Type', 'text/html');
res.send(Buffer.from('<h2>Test String</h2>'));
KostasX