Open
Description
openedon Jun 5, 2024
I sometimes want to use a function to get Unicode code point notation used in convention like U+0061
(Unicode 15.0, p.968) from Char
. Such function is implemented in
Lines 331 to 339 in f942c29
and it is easy to write:
unicode_code_point_notation(c::AbstractChar) = "U+" * uppercase(string(codepoint(c), base=16, pad=4))
But I think it is good to have the function in module Unicode
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment