Golang : Convert Chinese UTF8 characters to Pin Yin
Not really a tutorial, but putting this here in case I need to refer back again in future. Here is a list of Golang packages that can convert UTF8 Chinese characters into romanized characters or Pin Yin.
https://github.com/axgle/pinyin
and
https://github.com/mozillazg/go-pinyin
For the dictionary, see here https://github.com/mozillazg/go-pinyin/blob/master/pinyin_dict.go
Here is what these packages can do:
$ pinyin 中国人
zhōng guó rén
See also : Golang : How to print rune, unicode, utf-8 and non-ASCII CJK(Chinese/Japanese/Korean) characters?
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
+7.2k Golang : Rot13 and Rot5 algorithms example
+33.7k Golang : Call a function after some delay(time.Sleep and Tick)
+24.1k Golang : GORM read from database example
+29k Golang : JQuery AJAX post data to server and send data back to client example
+13.7k Golang : convert rune to unicode hexadecimal value and back to rune character
+11k Use systeminfo to find out installed Windows Hotfix(s) or updates
+9.4k Golang : Format strings to SEO friendly URL example
+36k Golang : Validate IP address
+6.8k Golang : Find the shortest line of text example
+28.9k Golang : missing Git command
+19.6k Golang : How to get time from unix nano example