How can I print an Extended-ASCII character to the console. For instance if I use the following
puts 57.chr
It will print "9" to the console. If I were to use
puts 219.chr
It will only display a "?". It does this for all of the Extended-ASCII codes from 128 to 254. Is there a way to display the proper character instead of a "?".