powershell.ps1
$UnixTime = 1711000300 $epoch = [DateTime]::new(1970, 1, 1, 0, 0, 0, [DateTimeKind]::UTC) $date = $epoch.AddSeconds($UnixTime).ToLocalTime()
python.py (hex epoch)
import datetime
VrijemeHex = "61a73207"
VrijemeDec = int (VrijemeHex,16)
VrijemeHuman = datetime.datetime.fromtimestamp(VrijemeDec).strftime('%Y%m%d-%H%M%S')
print (VrijemeHex,"=",VrijemeDec,"=",VrijemeHuman)
python xpython time xtime date xdate epoch xepoch hex xhex dec xdec human xhuman epochtohuman xepochtohuman epoch2human xepoch2human powershell posh pwsh xpowershell xposh xpwsh unix xunix

