Golang strconv.QuoteRune() function example
package strconv
Golang strconv.QuoteRune() function usage example
package main
import (
"fmt"
"strconv"
)
func main() {
r := '에'
qr := strconv.QuoteRune(r)
fmt.Println("A quoted rune looks like :", qr)
}
Reference :
Advertisement
Something interesting
Tutorials
+6.5k Golang : Map within a map example
+8.4k PHP : How to parse ElasticSearch JSON ?
+6.7k Golang : Humanize and Titleize functions
+9.4k Facebook : Getting the friends list with PHP return JSON format
+13.3k Golang : Linear algebra and matrix calculation example
+19.6k Golang : Set or Add HTTP Request Headers
+24.5k Golang : Time slice or date sort and reverse sort example
+9.2k Golang : Generate Codabar
+14.6k Golang : Execute function at intervals or after some delay
+11.2k Golang : Calculate Relative Strength Index(RSI) example
+7.5k Golang : Get YouTube playlist
+11.2k Golang : Proper way to test CIDR membership of an IP 4 or 6 address example