Last active
November 28, 2017 14:53
-
-
Save embano1/18da87181e555480a8a3763f4f72d680 to your computer and use it in GitHub Desktop.
go-emoji
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
s := string("\xF0\x9F\x98\x85") | |
b := []byte("\xF0\x9F\x8D\xBB") | |
fmt.Println(s,string(b)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Resources: