I'm trying to save something as JSON, but it breaks after a Unicode character:
Obj: {
comment => "test test test £466"
}
=> to_json
results in
{
"comment":"test test test "
}
Obj.inspect
puts:
`comment => "test test test \243466"`
Any hints here?