Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created December 20, 2016 12:37
Show Gist options
  • Save andreasvirkus/146c0be3a9d23e480ca51456540148ab to your computer and use it in GitHub Desktop.
Save andreasvirkus/146c0be3a9d23e480ca51456540148ab to your computer and use it in GitHub Desktop.
/**
* Returns a small symbol with the correct time displayed in the depicted analog clock
*/
(function () {
return "\ud83d"+String.fromCharCode(56656+((h=(n=new Date).getHours()%12)?h-1:11)+(n.getMinutes()>29&&12))
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment