Unicode strings: Difference between revisions

Add Lua
(→‎{{header|Raku}}: update about Unicode version support and string normalization)
(Add Lua)
Line 942:
 
[[File:Unicode print locomotive basic.png]]
 
=={{header|Lua}}==
 
By default, Lua doesn't support Unicode. Most string methods will work properly on the ASCII range only like [[String case#Lua|case transformation]]. But there is a [https://www.lua.org/manual/5.4/manual.html#6.5 <code>utf8</code>] module that add some very basic support with a very limited number of functions. For example, this module brings a new [[String length#Lua|length method]] adapted for UTF-8. But there is no method to transform the case of Unicode string correctly. So globally the Unicode support is very limited and not by default.
 
=={{header|M2000 Interpreter}}==