package main import ( "fmt" "time" ) func main() { t, _ := time.Parse("2006-01-02 15:04:05", "2023-07-24 10:06:33") fmt.Println(t.Unix()) }