escape sequence in Go

In Go, the following escape sequence are available.

Escape Sequence|Meaning
-----|-----
\a|Alarm or Beep
\b|Backspace
\f|Form Feed
\n|New Line
\r|Carriage Return
\t|Horizontal Tab
\v|Vertical Tab
\\\\ |Backslash
\'|Single Quote
\"|Double Quote
\ooo|octal number, where ooo is three octal digits (0...7)
\uuuuu|unicode number, where uuuu is four hexadecimal digits (0...9, a...f, A...F)
\UUUUU|unicode number, where UUUU is four hexadecimal digits (0...9, a...f, A...F)
\xhh|hexadecimal number, where hh is two hexadecimal digits ( 0...9, a...f, A...F )