String case: Difference between revisions

→‎{{header|Julia}}: specific handling of some letters
m (→‎{{header|Go}}: fix spell)
(→‎{{header|Julia}}: specific handling of some letters)
Line 1,926:
julia> lowercase("alphaBETA")
"alphabeta"</syntaxhighlight>
 
Some letters like ß (U+00DF) are transformed to ẞ (U+1E9E) in Julia, instead of SS (2 𝗑 U+0053) as expected of the Unicode standard<ref>https://unicode.org/faq/casemap_charprop.html#11</ref>.
 
<syntaxhighlight lang="julia">
julia> a = 'ß'
'ß': Unicode U+00DF (category Ll: Letter, lowercase)
 
julia> uppercase(a)
'ẞ': Unicode U+1E9E (category Lu: Letter, uppercase)
</syntaxhighlight>
 
=={{header|K}}==