LoginSignup
7
5

More than 5 years have passed since last update.

Railsのロケールで特殊文字が表示されない問題

Last updated at Posted at 2014-03-12
locales/ja.yml
ja:
  footer: "© naoty All Rights Reserved."

などと©のような特殊文字をロケールファイルで指定するとうまく表示されない。

> I18n.t("footer")
=> "© naoty All Rights Reserved."

こういうときは特殊文字の16進数表記を使うとうまく表示される。

locales/ja.yml
ja:
  footer: "\xA9 naoty All Rights Reserved."
> I18n.t("footer")
=> "© naoty All Rights Reserved."
7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5