Possible Duplicate:
invalid multibyte char (US-ASCII) with Rails and Ruby 1.9

How can I put French characters in a Ruby file? Here is an error:

SyntaxError in ArticlesController#show 

    /.../app/controllers/articles_controller.rb:47: invalid multibyte char (US-ASCII)
    /.../app/controllers/articles_controller.rb:47: invalid multibyte char (US-ASCII)
    /.../app/controllers/articles_controller.rb:47: syntax error, unexpected $end, expecting '}'
    ...@article, notice: 'Article a été créé avec succes.' }

In a HTML file a put this in head and the accents work:

<!DOCTYPE html>

<head>
<meta http-equiv="content-type" content="text/html"; charset="utf8">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta http-equiv="Content-Style-Type" content="text/css">
  <!-- ... autres mentions de l'entête de fichier ... -->
</head>
link|improve this question

0% accept rate
Have you changed the file encoding to UTF-8 in the editor? – VSU Jan 10 at 5:28
feedback

closed as exact duplicate by Kev Jan 11 at 0:52

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

Ruby has a special syntax for declaring the charset of a file: if you are using multibyte characters, you can use this line at the very top of your file, with no preceding whitespace

# encoding: utf-8
link|improve this answer
thank you I take the hit for future problem – René Jan 10 at 3:30
feedback

Since Ruby 1.9, Strings always have an encoding attached. So Ruby can properly handle multi-byte characters and is able to convert between different encodings. Proor versions of Ruby basically handled strings as byte arrays which made it nearly impossible to properly handle multiple encodings.

By default, Ruby 1.9 uses US_ASCII encoding everywhere. But you can change that. There are three different default encodings you can set (which all use US_ASCII by default:

  • internal encoding: The default encoding all strings are converted to. This is the encoding that strings are saved internally.
  • external encoding: When reading files, assume them to be in that encoding.
  • source encoding: Assume the ruby source code to be written in this encoding

The former two encodings can be set like this

Encoding.default_internal = 'UTF-8'
Encoding.default_external = 'UTF-8'

They are then used during all operations in the current Ruby process lifetime.

The source encoding can be set using a "magic comment" at the very first start of your ruby file (or below the shabang) like so

# encoding: UTF-8

or by starting your script using ruby -KU which also sets the default encoding to UTF-8. You can also set this in your shebang. In your specific case, you have to at least set the source encoding using one of the provided mechanisms.

See http://blog.grayproductions.net/categories/character_encodings and especially http://blog.grayproductions.net/articles/ruby_19s_three_default_encodings for some more information and background on String encodings in Ruby 1.9.

link|improve this answer
Thank you It;s parfect I put => #encoding: utf-8 in the first lineof a program.rb – René Jan 10 at 3:28
feedback

Which encoding do you use?

You can define the encoding of your sourcefile in the header. Or better: If you use characters beyond ASCII, you must define it.

Alex already mentioned

#encoding: utf-8

If you don't use UTF-8, but your local french codepage, you may use this header in the first line of your source code:

#encoding: cp1252

Perhaps you will get other encoding errors, when you read and save file. Details can be found in http://blog.grayproductions.net/articles/ruby_19s_three_default_encodings

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.