Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
package main import ( "fmt" "time" ) func main() { loc, err := time.LoadLocation("UTC") if err != nil { fmt.Println(err) } now := time.Now().In(loc) fmt.Println(now) } /* run: 2020-08-16 13:50:18.906852853 +0000 UTC */