I have the following json output, I am unable to by pass when it comes to these characters.
Json String
{
    "results": {
        "RESULT1-Node1": {
            "Network.MS": "405",
            "Down_time": "131"
        },
        "RESULT4-Node2": {           
            "Network.MS": "451",
            "Down_time": "141"                         }
             }
}
Javascript
     for (var resultBank in jsonData.results) {
            var rootType = resultBank ;
            console.log(rootType );
             for(var result in eval("resultBank."+JSON.stringify(rootType)) ){
                console.log(result[result]); 
             }  
}
 
    