# File lib/sup/util.rb, line 363
  def to_character
    if self < 128 && self >= 0
      chr
    else
      "<#{self}>"
    end
  end