func ToUpperSpecial(c unicode.SpecialCase, s string) string
package main import ( "fmt" "strings" "unicode" ) func main() { fmt.Println(strings.ToUpperSpecial(unicode.TurkishCase, "örnek iş")) } // Output: // ÖRNEK İŞ