How do I get UTF-8 support on my API? At the moment, a string outputs like this:
name: \"John D�m\"
Instead of:
name: \"Joh
My problem solved with this:
res.writeHeader(200 , {"Content-Type" : "text/html; charset=utf-8"});