Unicode strings: Difference between revisions

Content added Content deleted
Line 833: Line 833:
let e = "$abcde¢£¤¥©ÇßçIJijŁłʒλπ•₠₡₢₣₤₥₦₧₨₩₪₫€₭₮₯₰₱₲₳₴₵₵←→⇒∙⌘☺☻ア字文𪚥"
let e = "$abcde¢£¤¥©ÇßçIJijŁłʒλπ•₠₡₢₣₤₥₦₧₨₩₪₫€₭₮₯₰₱₲₳₴₵₵←→⇒∙⌘☺☻ア字文𪚥"
echo e</lang>
echo e</lang>

=={{header|Oforth}}==

In Oforth, all strings are UT8 strings.

\Uxxxx (with xxxx an hexa number) can be used into literals to represent character with xxxx as its unicode.

All methods on strings are UTF8 manipulations.


=={{header|Perl}}==
=={{header|Perl}}==