Go Program to Convert Character to Lowercase

In this Go Program, to convert the character to lowercase, we used IsLetter to check the character is an alphabet. Next, we used the unicode ToLower function (lw := unicode.ToLower(upch)) that converts the uppercase characters to lowercase. package main import ( “bufio” “fmt” “os” “unicode” ) func main() { reader := bufio.NewReader(os.Stdin) fmt.Print(“Enter Character to … Read more