diff --git a/helper/unicode_helper.go b/helper/unicode_helper.go index 6170f59..317bb43 100644 --- a/helper/unicode_helper.go +++ b/helper/unicode_helper.go @@ -2348,6 +2348,9 @@ type UnicodeHelper struct { func (uh *UnicodeHelper) GetRange(code int) string { for _, bl := range uh.blocks { if code >= bl.Start && code <= bl.End { + if bl.Zh == "" { + return bl.En + } return bl.Zh } }