How to change int into int64? December 2, 2022 by Tarik This is called type conversion : i := 23 var i64 int64 i64 = int64(i)