Unicode strings: Difference between revisions

Add NImrod
(→‎{{header|TXR}}: Explicit -B to show variable bindings.)
(Add NImrod)
Line 758:
 
How broad/deep does the language support Unicode? What encodings (e.g. UTF-8, UTF-16, etc) can be used? Normalization? '''Using the standard .NET libraries, there is a lot of support for unicode string manipulation. For example, normalization is accomplished by simply calling the Normalize() method on a string.'''
 
=={{header|Nimrod}}==
Strings are assumed to be UTF-8 in Nimrod.
<lang nimrod>let c = "abcdé"
let Δ = 12
let e = "$abcde¢£¤¥©ÇßçIJijŁłʒλπ•₠₡₢₣₤₥₦₧₨₩₪₫€₭₮₯₰₱₲₳₴₵₵←→⇒∙⌘☺☻ア字文𪚥"
echo e</lang>
 
=={{header|Perl}}==
Anonymous user