For example, given that '\u03BC'
is 'μ'
, how should I turn "\\u03BCm"
to "μm"
?
Thanks for any suggestions!
For example, given that '\u03BC'
is 'μ'
, how should I turn "\\u03BCm"
to "μm"
?
Thanks for any suggestions!
julia> unescape_string("\\u03BCm")
"μm"
Exactly what I’m looking for. Thank you!