Comment obtenir le Timestamp de l'heure UTC avec Golang?

Je veux convertir l'heure UTC de la chaîne d'timestamp unix.
Je fais ce

fmt.Printf("%s %d\n", time.Now().String(), time.Now().Unix())
fmt.Printf("%s %s\n", time.Now().UTC().String(), time.Now().UTC().Unix())

Mais j'ai eu le même timestamp unix 1499018765

2017-07-02 20:06:05.5582802 +0200 CEST 1499018765

2017-07-02 18:06:05.791337 +0000 UTC 1499018765

OriginalL'auteur LeMoussel | 2017-07-02