I'm an independent software consultant. If you want to pay some of my bills in exchange for my magic computer voodoo
Email nate@webclarity.com or you can parse my phone in your fav lang below.
// c#
int.Parse(0x43B30ABCF, System.Globalization.NumberStyles.HexNumber);
// ActionScript 3.0 / JavaScript / ECMAScript
parseInt( 0x43B30ABCF , 10 );
// Java
Integer.parseInt( '43B30ABCF' ,10);
// c++
strtol('0x43B30ABCF',NULL,10);
// Objective-C (iOS/iPhone/iPad/etc)
[NSString stringWithFormat:@"%d", 0x43B30ABCF];