Goal:
I am attempting to use UTF-8 characters in my code. However they are not rendering correctly in powershell.
For example:
function Go-Left{
Write-Host '⏩Left'
}
PS > Go-Left
Problem:
This will print 'Left', but it also replaces ⏩ with a box that contains a question mark. Which is a generic character for displaying an 'unrenderable character'.
Question:
Is there any way to display these characters in powershell?