BigFloat converted to string returns different number?

BigFloat is still a binary format, just with more bits (256 by default). Most decimal expansions have infinite length in binary. If you want to represent decimal numbers exactly, you need to use a different number type.

2 Likes