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?
