Range operator with char returns unexpected value · Issue #5731 · PowerShell/PowerShell

Steps to reproduce [char]'a'..[char]'e' Expected behavior # Char array ([char]'a', [char]'b', [char]'c', [char]'d', [char]'e') a b c d e Actual behavior # Int array (97, 98, 99, 100, 101) 97 98 99 ...