Created
October 6, 2014 10:58
-
-
Save hymkor/071061f9f6ff4171ae28 to your computer and use it in GitHub Desktop.
文字の Unicode を確認するだけのプログラム
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" | |
import "os" | |
func main() { | |
for _, arg1 := range os.Args[1:] { | |
for _, r := range arg1 { | |
fmt.Printf("[%0X]", r) | |
} | |
fmt.Print("\n") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment