Golang : convert rune to unicode hexadecimal value and back to rune character
There are times when we need to convert a rune to unicode hexadecimal style for storage purpose, encryption, manipulation and etc. Below is a short example on how to convert a rune to unicode hexadecimal value and how to convert unicode hexadecimal value back to rune character.
package main
import (
"fmt"
"strconv"
)
func main() {
// translate character to rune
r := rune('黄')
// extra the unicode \uxxxx value
unicode := strconv.QuoteRuneToASCII(r)
fmt.Println(string(r) + " unicode hex value is : ", unicode)
// convert back unicode to rune
// this WILL NOT work, it just prints out the unicode string
fmt.Println("\"\\u" + unicode[3:len(unicode)-1] + "\"")
// strangely, this will work
fmt.Println("\u9ec4")
// therefore, to convert a unicode back to rune
// use strconv.Unquote
char, _ := strconv.Unquote(unicode)
fmt.Println(unicode + " rune character is : ", char)
}
Output :
黄 unicode hex value is : '\u9ec4'
"\u9ec4"
黄
'\u9ec4' rune character is : 黄
Hope you may find this short tutorial useful in dealing with unicode and rune.
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+14.3k Golang : How to convert a number to words
+8.3k Golang : Implementing class(object-oriented programming style)
+13.3k Golang : Verify token from Google Authenticator App
+6k nginx : force all pages to be SSL
+23.4k Golang : Check if element exist in map
+7.9k Setting $GOPATH environment variable for Unix/Linux and Windows
+16.4k Golang : File path independent of Operating System
+7.5k Golang : How to handle file size larger than available memory panic issue
+12.5k Golang : Get absolute path to binary for os.Exec function with exec.LookPath
+4.3k Javascript : How to show different content with noscript?
+10.3k Golang : Simple Jawi(Yawi) to Rumi(Latin/Romanize) converter
+15.7k Golang : Get digits from integer before and after given position example