• You should replace

    console.log("> data  : " , data);
    

    with

    for (index in data) { 
      console.log("> data:" + data.charCodeAt(index));
    }
    

    to see numbers instead of text.

About

Avatar for maze1980 @maze1980 started