Beginner go error cannot use'\ u0000' (type rune) as type string

package main

 import (
     "github.com/tealeg/xlsx"
 )

 func main() {
     file, err := xlsx.OpenFile("./Workbook.xlsx")
     if err != nil {
         panic(err)
     }
     first := file.Sheets[0]
     row := first.AddRow()
     row.SetHeightCM(1)
     cell := row.AddCell()
     cell.Value = "1"
     cell = row.AddCell()
     cell.Value = ""
     cell = row.AddCell()
     cell.Value = ""
     cell = row.AddCell()
     cell.Value = "18"

     err = file.Save("./Workbook.xlsx")
     if err != nil {
         panic(err)
     }

 }
Apr.07,2021
The

string is in double quotes, and the single quotation mark is of type rune

Menu