Hello, >From the messages on IRC, I believe you're talking about `\uXXXX` escape sequences in JSON output for items. (`\uXXXX` are valid in JSON <http://json.org/> and should be interpreted without any issue by your JSON consuming program, but they are not really "human-readable", that's for sure)
Starting with scrapy 1.2, you can change this (default) behavior and set FEED_EXPORT_ENCODING <https://docs.scrapy.org/en/latest/topics/feed-exports.html#std:setting-FEED_EXPORT_ENCODING> in your settings, for example FEED_EXPORT_ENCODING = 'utf-8' and you should see UTF-8 encoded characters in the .json file. Regards, Paul. On Monday, November 7, 2016 at 10:42:54 AM UTC+1, Michele Gatti wrote: > > I found a problem when scraping a site with a price I can convert this > string u20ac in € currency. > Any body can help me? > -- You received this message because you are subscribed to the Google Groups "scrapy-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/scrapy-users. For more options, visit https://groups.google.com/d/optout.
