Reputation: 137
I have file with string like this
\u0440\u043e
How I can decode this string on PowerShell?
Upvotes: 4
Views: 213
Reputation: 59031
You can use the regex unescape function:
[regex]::Unescape("\u0440\u043e")
Output:
ро
Upvotes: 4