Hex -Zeichenfolge zum Dezimalstring JavaScript
Var hex = '78';
var des = parseInt(hex,16) //gives 120 according to ascii table
SHAM3R
Var hex = '78';
var des = parseInt(hex,16) //gives 120 according to ascii table