package main import "fmt" func main() { var message string = "Hi 👩 and 👨" var msgRunes []rune = []rune(message) fmt.Println(string(msgRunes[3])) }