Converts a given object to an object that represents the corresponding primitive data. If the conversion fails, returns null.
byte(-126) ==> new Byte(0x82)
int("123") ==> new Integer(123)
int("hello") ==> null
double("123.456") ==> new Double(123.456)
char(65) ==> 'A'