ToLower maps the rune to lower case.
package main import ( "fmt" "unicode" ) func main() { const ucG = 'G' fmt.Printf("%#U\n", unicode.ToLower(ucG)) }