to_json_raw_object -> Hash
[permalink][rdoc][edit]-
生の文字列を格納したハッシュを生成します。
このメソッドは UTF-8 の文字列ではなく生の文字列を JSON に変換する場合に使用してください。
require 'json' "にほんご".encode("euc-jp").to_json_raw_object # => {"json_class"=>"String", "raw"=>[164, 203, 164, 219, 164, 243, 164, 180]} "にほんご".encode("euc-jp").to_json # source sequence is illegal/malformed (JSON::GeneratorError)