Big numbers full display?

So i got the number 7000000000 displayed in a textmesh but unity turns it into 7E+09. Any way to make it just display the full number?

long number = 7000000000L;
string formattedNumber = number.ToString(“f0”);

Note that if you are using float to store your large number, you’ll pretty much lose anything after the first 7 positions (i.e 123456789012 becomes 123456800000) due to the nature of the float data type. No way to get around this besides using a different data type, like long, double, or decimal.