Unicode strings: Difference between revisions

add PowerShell
m (BBC BASIC moved to the BASIC section.)
(add PowerShell)
Line 1,180:
λ ä
</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}}==