Unicode strings: Difference between revisions

Content added Content deleted
(Add NImrod)
(added Elixir)
Line 525: Line 525:


Strings are UTF-16.
Strings are UTF-16.

=={{header|Elixir}}==
Elixir has exceptionally good Unicode support in Strings. Its String module is fully compliant with the Unicode Standard, version 6.3.0. Internally, Strings are encoded in UTF-8. As source files are also typically Unicode encoded, String literals can be either written directly or via escape sequences. However, non-ASCII Unicode identifiers (variables, functions, ...) are not allowed.


=={{header|Erlang}}==
=={{header|Erlang}}==