Load(and write) JSON to desktop in human readable form

Creating a simple JSON loader but I want the JSON file that is saved and loaded to be human readable.

ie this won’t work to save files because it converts to Base64

File.WriteAllText(filePath,Convert.ToBase64String(Encoding.UTF8.GetBytes(JsonUtility.ToJson(data))))

So… just… don’t do the Base64 encoding?

File.WriteAllText(filePath, JsonUtility.ToJson(data))