You cannot do this with CSV. Try using Excel. Create a spreadsheet with the value "7002136138603600000" in the cell preceded by a single quote (') to indicate that it is text. Excel will display the full number correctly. Save it as a CSV. Refresh. The number will be displayed using the exponential format.
Alternatively you can use HTML. Add the xmlns: x = "urn: schemas-microsoft-com: office: excel" namespace to your html root and this attribute to your td element.
x:str="'7002136138603600000"
Excel will display it as text. For a more complete example, create an Excel document as I mentioned, and save it as html.
You can also use XML if you know that your clients are using Excel 2003 or later.
source share