How to Convert Big Endian to Float?

First, you've got to convert the string "429C0000" to binary, then a simple 'float' cast is all you need.

If you've alread got it as binary:

  unsigned long x = 0x429C0000;

  Serial.println (*(float*) &x);