An Int64 is a signed 64-bit integer, which means it has a range of values from −9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.
Since toString doesn't format its output with commas, the longest possible value of the string would be "−9223372036854775808" which is 20 characters long.
Now, since this is representing a UNIX timestamp we need to take into consideration what would be considered a "reasonable" date to return. As I write this, a current UNIX timestamp would be something close to "1292051460", which is a 10-digit number.
Assuming a maximum length of 10 characters gives you a range of timestamps from `-99999999" to 9999999999" (note that I'm including the negation symbol as a character in the lower bound). This gives you a range of dates from "Mon, 31 Oct 1966 14:13:21 GMT" to "Sat, 20 Nov 2286 17:46:39 GMT".
If you're not expecting dates before Halloween 1966 or after late November 2286, you can reasonably assume that the length of the string won't exceed 10 characters. If you are expecting dates outside of this range (most likely pre-1966 rather than post-2286), you can expect to see an 11 character string. I wouldn't expect any more than that.
That's the maximum number of characters to expect; it could be shorter.