I had a point file with X, Y pairs tied to a string timestamp - unreadable by ArcPro & the convert time tool. I had to write a tiny script and thought I'd share it if you find yourself in a similar spot:

from datetime import datetime
def getDate(timestamp):
datetimeObject = datetime.fromtimestamp(timestamp)
return datetimeObject