Chinese garbled code on node page

var http = require("http");
http.createServer(function (req,res) {
    res.writeHead(200,{"Content-Type":"text/html,charset=utf-8"});
    res.end("abc","utf-8");
}).listen(8081);

after opening the web page http://localhost:8081/, abc raccoons trickle down to display , why does the response header charset=utf-8 not display properly?

Mar.05,2021

your header information should be set incorrectly:
res.writeHead (200,{ 'Content-Type':'text/html;charset=utf-8'});

in the middle is a semicolon: ; is not a comma

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3d089-2c36c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3d089-2c36c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?