Fear of Fish successfully answered Don Miguel de los Platanos's question:

What support does ruby have for internationalization? I have heard that ruby on rails doesn't support a large amount of character sets. I am in the midst of rolling out a international application and need to ofcourse make sure that rails can support every character set possible. Some I need initially are UTF8, Big 5, Shift JIS. Can rails handle this?

People succeed in answering Don Miguel de los Platanos's questions 42% of the time (8 successes in 19 attempts).

Answers by: Rich Collins | Adam Thorsen | Fear of Fish | skwp

Fear of Fish's Answer:

Reply by Fear of Fish 920 days ago

I am currently working on a Ruby on Rails site that needs localisation and multiple character types. Step one is to make sure that Ruby has been unicode enabled:

# UTF-8 support
$KCODE = 'u'
require 'jcode'

Ensure that your SQL databases are also using UTF8 encoding, then choose a localisation tool. I personally use globalize and have had no problems with characters yet:

http://www.globalize-rails.org/

Reply by Fear of Fish 920 days ago

That didn't format as intended. The require 'jcode' should be on a seperate line.

Reply by Don Miguel de los Platanos 920 days ago

I will check out globalize, so far my test with unicode_hack are working pretty well.