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
+87k Golang : How to convert character to ASCII and back
+25.2k Golang : Generate MD5 checksum of a file
+19.1k Golang : Calculate entire request body length during run time
+18.8k Golang : Display list of time zones with GMT
+11.1k Golang : Intercept and process UNIX signals example
+6.7k How to let Facebook Login button redirect to a particular URL ?
+11.1k Golang : Calculate Relative Strength Index(RSI) example
+18.7k Golang : How to make function callback or pass value from function as parameter?
+19.1k Golang : Populate dropdown with html/template example
+29.8k Golang : Get time.Duration in year, month, week or day
+19.1k Golang : Get RGBA values of each image pixel
+13k Golang : Skip blank/empty lines in CSV file and trim whitespaces example