\t 制表符

fmt.Print("hello\tworld")
//hello   world

\n 换行符

fmt.Print("hello\nworld")
//hello   
//world

\r 回车符

fmt.Print("yoni是帅哥\rnike")
//nike是帅哥

\\ 表示一个斜杠

fmt.Print("hello\\tworld")
//hello\world

\" 表示一个双引号

fmt.Print("hello\"tworld")
//hello"world