Golang unicode.ToUpper() function example
package unicode
Golang unicode.ToUpper() function usage example
package main
import (
"fmt"
"unicode"
)
func main() {
UpperCaseRune := unicode.ToUpper('a')
fmt.Printf("%+q\n", UpperCaseRune)
}
Reference :
Advertisement
Something interesting
Tutorials
+9k Golang : automatically figure out array length(size) with three dots
+7.5k Golang : Gorrila set route name and get the current route name
+15.7k Golang : Intercept Ctrl-C interrupt or kill signal and determine the signal type
+7.1k Golang : Use modern ciphers only in secure connection
+14.2k Golang : Fix image: unknown format error
+5.9k Golang : Denco multiplexer example
+5.1k Golang : Check if a word is countable or not
+17k Golang : Capture stdout of a child process and act according to the result
+30.8k Golang : Download file example
+14k Golang : Reverse IP address for reverse DNS lookup example
+5.4k Javascript : How to loop over and parse JSON data?
+22.7k Golang : Strings to lowercase and uppercase example