Skip to content

Instantly share code, notes, and snippets.

@mollyporph
Created August 28, 2015 13:27
Show Gist options
  • Save mollyporph/5f0840f66f105a645018 to your computer and use it in GitHub Desktop.
Save mollyporph/5f0840f66f105a645018 to your computer and use it in GitHub Desktop.
function hexToString(hexValue) {
var hex = hexValue.toString();
var str = '';
for (var i = 0; i < hex.length; i += 2)
str += String.fromCharCode(parseInt(hex.substr(i, 2), 16));
return str;
}
var dateVal = new Date(hexToString(aHexValueGoesHere));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment