https://github.com/notfounds/jaconv
https://github.com/notfounds/jaconv
go
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/notfounds/jaconv
- Owner: NotFounds
- Created: 2019-11-30T04:56:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-30T12:44:39.000Z (over 6 years ago)
- Last Synced: 2025-12-25T14:57:13.240Z (5 months ago)
- Topics: go
- Language: Go
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jaconv

## Description
A converter to convert between Japanese Hiragana, Katakana and Romaji.
## Usage
```golang
text := "こんにちは"
romaji := jaconv.Kana2Romaji(text)
fmt.Println(romaji) // konnichiha
katakana := jaconv.Romaji2Kana(romaji)
fmt.Println(katakana) // コンニチハ
hiragana := jaconv.Katakana2Hiragana(katakana)
fmt.Println(hiragana) // こんにちは
```
## Installation
```sh
go get github.com/NotFounds/jaconv
```
## References
[ヘボン式ローマ字綴方表 - 外務省](https://www.ezairyu.mofa.go.jp/passport/hebon.html)
## License
MIT