Golang : Convert Unix timestamp to UTC timestamp
Problem :
You have a Unix timestamp and you want to convert it to UTC time format. How to do that in Golang?
For example :
>date +%s
1432572732
Solution :
Use the strconv.ParseInt()
function to convert unix time stamp to integer value first and then use time.Unix()
to convert the integer value to proper UTC (Coordinated Universal Time) time stamp.
Here you go:
package main
import (
"fmt"
"os"
"strconv"
"time"
)
func main() {
unixTimeStamp := "1432572732"
unixIntValue, err := strconv.ParseInt(unixTimeStamp, 10, 64)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
timeStamp := time.Unix(unixIntValue, 0)
fmt.Println(timeStamp)
}
Output :
2015-05-25 16:52:12 +0000 UTC
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.4k PHP : Proper way to get UTF-8 character or string length
+4.8k HTTP common errors and their meaning explained
+20.8k Golang : Underscore or snake_case to camel case example
+17k Golang : Capture stdout of a child process and act according to the result
+4.7k Linux/MacOSX : How to symlink a file?
+13.8k Generate salted password with OpenSSL example
+25.8k Golang : How to read integer value from standard input ?
+32.7k Golang : Regular Expression for alphanumeric and underscore
+27.2k Golang : Find files by name - cross platform example
+4.8k Golang : A program that contain another program and executes it during run-time
+7.1k Golang : Validate credit card example
+10.9k Golang : Removes punctuation or defined delimiter from the user's input