ruby 如何把unicode转换为中文字符

我工作中配到一个问题,从别的服务器上取json串,然后进行解析存入数据库中,talk1字段是unicode编码,如下
{ "remark": "", "id": 2878, "mobile": "15030010580", "talk1": "\u6302\u65ad"}
在rails后台处理完直接存入数据库的话,数据库中也是[color=red]"\u6302\u65ad"[/color] 这个样子,我想问一下我该如何转码,
把unicode转为中文,求各位大神帮忙!

如果你是 windows 平台,就应该用 to_gb18030

def to_utf8
Iconv.conv("gb18030//IGNORE","utf-16//IGNORE",self).j16
end

http://sevk.iteye.com/blog/727884 ruby utf-8 转 unicode big

转到 unicode 其实只要 Iconv.conv("unicodebig//IGNORE","utf-8//IGNORE",self) 就行了。

反过来是: puts Iconv.conv("utf-8","unicodebig",self)