mirror of
https://github.com/fumiama/emozi.git
synced 2026-06-07 19:40:36 +08:00
22 lines
609 B
Markdown
22 lines
609 B
Markdown
<div align="center">
|
|
|
|
<h1>EMOZI</h1>
|
|
参考古埃及圣书体设计的一种基于颜文字的汉字抽象转写法<br>🐑🚬🧗👤🕸️😐🧗✍️👈🌞😨🏠🌹🧦😨👥🌹🔐😨💦⬅️☀️😨🏡💦💡🍉🌱🍵💡🧗🪓🍆👔😨🐶<br><br>
|
|
|
|
<img src="https://counter.seku.su/cmoe?name=emozi&theme=r34" /><br>
|
|
|
|
</div>
|
|
|
|
W.I.P.
|
|
|
|
## 实用工具
|
|
### 拼音识别拆分
|
|
将带声调的拼音拆分为以国际音标表示的声母韵母。
|
|
```go
|
|
s, y, t, err := emozi.SplitPinyin("jiǒng")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println(s, y, tone) // tɕ i̯ʊŋ 上声
|
|
```
|