script-of ( char -- script ) (original) (raw)
script-of ( char -- script )
Unicode script properties
Vocabulary
unicode
Inputs
char | a code point |
---|
Outputs
script | a string |
---|
Word description
Finds the script of the given Unicode code point, represented as a string.
Definition
USING: interval-maps unicode.script ;
: script-of ( char -- script ) script-table interval-at ;