Skip to content

hajimehoshi/go-jisx0208

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JIS X 0208 Converter in Go

How to use

ch, err := jisx0208.Rune(0x2422)
if err != nil {
       panic(err)
}
fmt.Printf("%c\n", ch) // あ

r, err := jisx0208.Code(ch)
if err != nil {
       panic(err)
}
fmt.Printf("%X\n", r) // 2422

About

Converts a JIS X 0208 code to a rune

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages