Summary: Use Windows PowerShell to display ASCII characters.
How can I use Windows PowerShell to quickly display printable ASCII characters when I am not connected
to the Internet?
Use the range operator to create a range of numbers 1 through 128, pipe it to Foreach-Object (% is the alias),
and display the current object and the [char] value on the pipeline, for example:
1..128 | %{"$_ $([char]$_)"}