I'm writing a rails application in Spanish and I'm having trouble displaying accented characters from JavaScript.
Everything works fine in development, but in production, in the unified /public/assets/application[*fingerprint*].js file, all my special Spanish characters get converted to question marks. I have triple checked that my .js files are indeed in UTF-8, and have also tried changing the extension to .js.erb and putting <%# encoding: utf-8 %> at the top of the files, but still no joy.
I created a new, simple application from scratch just to test this and the problem persists. I've even tried disabling the uglifier gem, just in case, and that didn't work either. My main suspect now is Sprockets, but can't find any information of this happening to anyone else. Has anyone encountered a similar problem?
config/environments/production, there is a commented settingconfig.I18n.default_locale, change it to your locale , according to this Rails guide. – Qumara SixOneTour Feb 13 at 7:43config.i18n.default_locale = :estoconfig/application.rbas it seemed to make more sense there, but although my application now reports the locale to be es instead of en but the special characters are still missing. – laffinkippah Feb 13 at 16:14