Skip to content

Instantly share code, notes, and snippets.

@lkatney
Last active August 29, 2015 14:09
Show Gist options
  • Save lkatney/56d247830f0bb27c45cf to your computer and use it in GitHub Desktop.
Save lkatney/56d247830f0bb27c45cf to your computer and use it in GitHub Desktop.
Convert Unix timestamp to Apex datetime
string unixDatetime = '1387033750000';
system.debug(datetime.newinstance(long.valueOf(unixDateTime)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment