I try to format a string in a powershell 3 console like so:
PS C:\> "price : {0:C}" -f 15,99
price : ? 15,00
Instead of displaying the currency sign, I get a "?".
If I do the same command in ISE, the windows powershell IDE, I get:
PS C:\> "price : {0:C}" -f 15,99
price : € 15,00
Why is this? Do I need to enable a setting for the console session?
-Darrell