Unicode strings: Difference between revisions

Content added Content deleted
m (BBC BASIC moved to the BASIC section.)
(add PowerShell)
Line 1,180: Line 1,180:
λ ä
λ ä
</pre>
</pre>

=={{header|PowerShell}}==

Unicode escape sequence (added in PowerShell 6<ref>https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_special_characters?view=powershell-7.3</ref>):

<syntaxhighlight lang="powershell">
# `u{x}
"I`u{0307}" # => İ
</syntaxhighlight>


=={{header|Python}}==
=={{header|Python}}==