Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Encoding::UndefinedConversionError: "\xC2" from ASCII-8BIT to UTF-8

I received the following error upon saving a new contact. Is there a way to cast "\xC2" so that it can be forced to be saved in the UTF-8 format?

c = Contact.new
c.save!

Encoding::UndefinedConversionError: "\xC2" from ASCII-8BIT to UTF-8: INSERT INTO "contacts" ("body", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?)

like image 868
Jackson Henley Avatar asked Sep 21 '13 03:09

Jackson Henley


2 Answers

Your string is in some other encoding, most likely iso-8859-1, so you should run this to convert it:

"\xC2".encode("iso-8859-1").force_encoding("utf-8")
=> "Ã"

See this question for more information related to this issue.

like image 95
jvperrin Avatar answered Nov 13 '22 08:11

jvperrin


For what it's worth, I had this issue pop up when I read in a code file that had the degree symbol (°) in a comment. Upon encoding it for json, ruby became incredibly unhappy.

What threw me for a loop was that there wasn't a "Ã" character in the code, so it's just something to keep in mind.

like image 28
xavdid Avatar answered Nov 13 '22 10:11

xavdid