Basically it does read you data, butit reads the raw data which need to be changed to another format like "utf8" to make sense try using :
const data = fs.readFile("input.txt","utf8",function (err,data){
if(err){
return err
}
console.log(data);
})