In my controller, the following works (prints \"oké\")
puts obj.inspect
But this doesn\'t (renders \"ok\\u00e9\")
render :j
Characters were not escaped to unicode with the other methods in Rails2.3.11/Ruby1.8 so I used the following:
Rails2.3.11/Ruby1.8
render :json => JSON::dump(obj)