We can use "`" to not escape a string:
package main
import "fmt"
func main() {
fmt.Println(`abc\tdef`) // abc\tdef
}
But how to get or print a non-escaped string variable?
package main
import "fmt"
func main() {
s := "abc\tdef"
fmt.Println(s) // abc def
}