I am trying to use drawing symbols to create graphics in my console program.
You should now use UTF-8.
Here is an example of using characters in a Box Drawing Unicode block :
puts "βββββββββ\nβ Hello β\nβββββββββ"
Conclusion:
βββββββββ
β Hello β
βββββββββ
, , , Unicode U + 2588 ( ), Ruby.
:
puts "\u2588"
puts 0x2588.chr('UTF-8')
:
puts 'β'