What is a syntax for generating the Unicode hexadecimal value of a character in Julia as a String?
To generate the Unicode hexadecimal value of a character <char> as a UInt32, one can execute codepoint('<char>').
Example
julia> codepoint('α')
0x000003b1
The codepoint of a character
<char>, in hexadecimal integer representation, as aStringtype, can be found bystring(Int('<char>'), base=16).Example