Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
439 views

How can I detect non-western characters?

I want to disallow certain UTF-8 input (server-side), e.g. eastern languages, where example input might be " 伊 ". However, I do want to continue supporting other latin or "latin-like" characters, ...
5
votes
1answer
2k views

Convert QString into QByteArray with either UTF-8 or Latin1 encoding

I would like to covert a QString into either a utf8 or a latin1 QByteArray, but today I get everything as utf8. And I am testing this with some char in the higher segment of latin1 higher than ...
4
votes
2answers
426 views

problem with unicode decoding

This is funny.. I am trying to read geographic lookup data from openstreetmap. The code that performs the query looks like this params = urllib.urlencode({'q': ",".join([e for e in full_address]), ...
3
votes
6answers
228 views

When to use utf-8 and when to use latin1 in MySQL?

I know that MySQL has default of latin1 encoding and apparently it takes 1 byte to store a character in latin1 and 3 bytes to store a character in utf-8 - is that correct? I am working on a site that ...
3
votes
1answer
401 views

inserting latin1-encoded text into utf8 tables (forgot to use mysql_set_charset)

I have a PHP web app with MySQL tables taking utf8 text. I recently converted the data from latin1 to utf8 along with the tables and columns accordingly. I did, however, forget to use ...
3
votes
2answers
134 views

Use latin characters in appengine

How can store latin characters in appengine? (e.g. "peña") when I want to store this I get this error: UnicodeDecodeError: 'ascii' codec can't decode byte 0xf1 in position 2: ordinal not in ...
3
votes
3answers
3k views

Differences between utf8 and latin1

what is the difference between utf8 and latin1?
3
votes
1answer
1k views

How can I convert Cyrillic stored as LATIN1 ( sql ) to true UTF8 Cyrillic with iconv?

I have a SQL dump file consisting of incorrectly stored Cyrillic Russian ( WINDOWS-1251 ) text, example Èðàíñêèå which should properly be displayed as Иранские. In the past I have successfully ...
2
votes
2answers
69 views

HTML Entity Converter in Ada

I want to write an Ada program which replaces Latin1 characters with applicable HTML entities, but my code does not work: text.txt and converted.txt are always the same. My tutor said that code is ...
2
votes
1answer
134 views

Convert Between Latin1-encoded Data.ByteString and Data.Text

Since the latin-1 (aka ISO-8859-1) character set is embedded in the Unicode character set as its lowest 256 code-points, I'd expect the conversion to be trivial, but I didn't see any latin-1 encoding ...
2
votes
2answers
139 views

Perl: String literal in module in latin1 - I want utf8

In the Date::Holidays::DK module, the names of certain Danish holidays are written in Latin1 encoding. For example, January 1st is 'Nytårsdag'. What should I do to $x below in order to get a proper ...
2
votes
2answers
354 views

Ruby 1.9.2 and Rails 3.0 UTF-8 madness

My previous question is answered but there's a few more things I don't understand. I have a yaml file which contains a field with a utf-8 character: :name: O\xE2\x80\x99Reilly When I load the ...
2
votes
1answer
334 views

Retrieving latin1 encoded results with JDBC

I am trying to retrieve result sets from a MySQL database sing JDBC which is then used to generate reports in BiRT. The connection string is set up in BiRT. The database is latin1: SHOW VARIABLES ...
2
votes
2answers
268 views

Encoding problem with reading website, three different encodings

I have a problem with a WebRequest in C#. It's a google page. The header states text/html; charset=ISO-8859-1 The website states <meta http-equiv=content-type content="text/html; ...
2
votes
2answers
453 views

How do I get an ASCII code from a string in JavaScript?

(Similar questions to this have been asked on StackOverflow, but not exactly this. The nearest is probably "javascript how to convert unicode string to ascii", where there is already the remark "this ...
2
votes
4answers
592 views

How to retrieve utf-8 data with php and show the correct encoding in an excelsheet db dump?

Hi I am saving mostly english and german characters into a mysql database which currently is set to utf-8 charset. I am assuming that I should use latin1 charset for this type of data, is that ...
2
votes
1answer
261 views

How to read in ISO 8859-1 (Latin-1) encoded text in Perl

So I'm trying to write a perl script to read in a file encoded in Latin-1. For some reason, this just isn't working out. When I try to do a simple search for a character that I know is in the file ...
2
votes
2answers
634 views

Converting mysql tables from latin1 to utf8

I'm trying to convert some mysql tables from latin1 to utf8. I'm using the following command, which seems to mostly work. ALTER TABLE tablename CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci; ...
2
votes
3answers
664 views

How can I convert an XML document from Latin-1 to UTF-8 in Perl?

We at the company want to convert all the sites we are hosting from Latin-1 to UTF-8. After a ot of googling, we have our Perl script almost complete. The only thing that is missing now are the XML ...
2
votes
2answers
162 views

What happens if I connect to a utf8 MySQL DB table using latin1?

Interesting question... if I have a MySQL table with CHARSET=utf8, and I open a connection with latin1 encoding, what happens? I tried this, and even characters such as ß and æ could be stored and ...
2
votes
1answer
530 views

C#: “Swedish” characters in Xpath when parsing Lating1Encoded docs

I've a set of html docs that I need to parse. They are encoded in Latin1Encoded. I'm using HtmlAgiliy pack for "parsing". I have a Xpath query (with swedish characters) that I can't get to work ...
1
vote
2answers
54 views

Locating fragments of non-Latin-1 text in a mostly-Latin-1 file?

I believe an English .txt to be Latin-1, but it may contain fragments in another encoding. Are there libraries or tools to locate these fragments? I'm aware of things like the Python chardat library, ...
1
vote
2answers
97 views

Encoding issue on SQL Server

I'm working with SQL Server database; database instance encoding is "SQL_Latin1_General_CP1_CI_AS". The following code: UPDATE ... SET field = CHAR(136) WHERE... puts in field the following ...
1
vote
1answer
114 views

MySQL UTF8 Data Not Being Displayed Properly

I want all the data in MySQL to be UTF8 encoded. I've set all the character sets and collations to be UTF8 for the database, tables and columns. Before anything is written to the database, I use ...
1
vote
1answer
95 views

XML File - I'd like to latin characteres like 'á, â, ã, ó'

I'm using NSXMLParse to parse my file.xml. It does work, but when I extract the inside text this file.xml, some words are cutted and I suppose that is an encoding problem. For example, a little part ...
1
vote
3answers
156 views

Reading and Writing XML files with unknown encoding in Perl?

I am picking up pieces of someone else's large project and trying to right the wrongs. The problem is, I'm just not sure what the correct ways are. So, I am cURLing a bunch of HTML pages, then ...
1
vote
1answer
268 views

How to make a Rails Migration be utf-8 instead of my default latin1

I just checked my MySQL tables and I have default set as latin1. Is that generally the default? How can I make it explicit for all my tables that I want the database to be utf-8? I know there is a ...
1
vote
1answer
262 views

mb_detect_encoding() discrepancy for non latin1 characters

I'm using the mb_detect_encoding() function to check if a string contains non latin1 (ISO-8859-1) characters. Since Japanese isn't part of latin1 I'm using it as the text within the test string, yet ...
1
vote
2answers
267 views

Locale that defaults to LATIN1 Encoding

I'm trying to create a new database cluster in postgresql that defaults to LATIN1 encoding, or at least supports it. Does anybody know what locale I could use? I am on Windows 7 64bit Thanks
1
vote
1answer
40 views

MySQL views comprising tables with different(?) character encodings

I'm building a cross-database view that consolidates data from two different subsystems for reporting. Both tables are using UTF8 encoding with utf8_general_cl collation. The problem is that one ...
1
vote
1answer
536 views

SQL Server database with Latin1 codepage shows Japanese Chars as “?”

Three questions with the following scenario: SQL Server 2005 production db with a Latin1 codepage and showing "?" for invalid chars in Management Studio. SomeCompanyApp client as a service that ...
1
vote
1answer
117 views

Guidelines for changing the default encoding of a Django site

Django comes with unicode support out of the box and it supports utf-8 by default. Say that you have developed, debugged and tested successfully a site with a bunch of Django apps in utf-8. What steps ...
1
vote
1answer
139 views

UTF-8 encoding inside database encrypted

i Convert my database from this tutorial http://en.gentoo-wiki.com/wiki/Convert_latin1_to_UTF-8_in_MySQL but i didn't notice the arabic characters INSIDE the database is encrypted , like Ø§ÙˆÙØ§µ ...
1
vote
2answers
427 views

MySql varchar change from Latin1 to UTF8

In a mySql table I'm using Latin1 character set to store text in a varchar field. As our website now is supported in more countries we need support for UTF8 instead. What will happen if I change these ...
1
vote
1answer
450 views

rails, mysql charsets & encoding: binary

i've a rails app that runs using utf-8. It uses a mysql database, all tables with mysql's default charset and collation (i.e. latin1). Therefore the latin1 tables contain utf-8 data. Sure, that's not ...
1
vote
2answers
1k views

using .NET how to convert iso8859-1 encoded text files that contain Latin-1 accented characters to utf-8

I am being sent text files saved in iso88591-1 format that contain accented characters from the Latin-1 range (as well as normal ASCII a-z etc). How to convert these files to utf-8 using C# so that ...
1
vote
1answer
285 views

Collate information missing when converting a MySQL table from Latin1 to UTF8

I'm converting an existing table such as this: CREATE TABLE `example`(`id` int(10) unsigned NOT NULL AUTO_INCREMENT, `column1` char(32) COLLATE latin1_general_ci NOT NULL ...
1
vote
1answer
58 views

Fixing older program: database text encoding, and incorrect field types

I'm currently again working on a program from when I was, umm... less capable. It has a number of problems: The database collation is latin1_swedish_ci. I would like to convert it to utf8. How would ...
1
vote
1answer
153 views

Converting Composite Bytes to Unicode in MySQL

I have a MySQL database that I recently migrated to another server. Unfortunately, MySQL dumps its data in Latin1 with any UTF-8 characters represented by composite bytes (ex. – instead of —). Is ...
0
votes
2answers
25 views

Line Feeds and Carriage Rerturns in Data: 0D 0A

I am writing a data clean up script (MS Smart Quotes, etc.) that will operate on mySQL tables encoded in Latin1. While scanning the data I noticed a ton of 0D 0A where the line breaks are. Since I ...
0
votes
2answers
45 views

Can't get correct value to query Chinese value from latin1 field Using JDBC for MySQL

It can't get correct value to query Chinese value from latin1 field (varchar or char) Using JDBC for MySQL. The character can't be changed. The following is the test steps. Is it possible to get the ...
0
votes
1answer
55 views

Opera and Safari aren't displaying latin1 characters

I'm having trouble displaying latin1 characters such as "ç", "ã" or "À" in the latest versions of Safari and Opera. I receive data (JSON) from a RoR backend using Ajax and JQuery (Latin1 charset) and ...
0
votes
2answers
179 views

Convert character from UTF-8 to ISO-8859-1 manually

I have the character "ö". If I look in this UTF-8 table I see it has the hex value F6. If I look in the Unicode table I see that "ö" has the indices E0and 16. If I add both I get the hex value of the ...
0
votes
2answers
109 views

iPhone NSString comparison having Extended ASCII or Latin 1 Unicode character set

I am having problem with NSString compare. The localizedCaseInsensitiveCompare: or any other compare: method in NSString is returning wrong result to me with extended ascii character set. for example ...
0
votes
0answers
39 views

Cannot insert accents into psql

In python I change several strings accordingly: str.decode('iso-8859-1').encode('utf-8') and insert them into a psql db. The db is in utf8. However, the string containing à jour and idé ...
0
votes
2answers
134 views

Detect latin1 characters in utf8 string

I get data from the database that is utf8 encoded. But somehow some old data contains latin1 characters. So this $encod = mb_detect_encoding($string, 'UTF-8', true); always is correct. Is it ...
0
votes
1answer
93 views

Ruby on Rails - Stripping strange characters out of body in rake task

On my company's Rails website, we have a Twitter area where tweets from our social media team are displayed by a rake task. Basically the rake task uses the Twitter gem to import any new tweets into ...
0
votes
1answer
413 views

MySQL Workbench charset

Exists any way to change the MySQL Workbench charset? My schema uses UTF-8 and when I view the table data (saved as UTF-8) or add data manualy, appears with charset errors, probably MySQL Workbench ...
0
votes
1answer
321 views

PHP question on encoding (latin1_swedish_ci vs utf8_unicode_ci)

I have a question regarding encodings. In my MySQL database I have encoded users in latin1_swedish_ci (bad idea). Now I connect my iPhone application to Facebook and retrieve the list of friend names, ...
0
votes
1answer
94 views

Converting table from latin1 to UTF-8, key too large problem

I am trying to convert some of my DB tables from latin1 character set to utf-8. Many tables got converted fine, but some tables return this error: alter table xyz convert to CHARACTER SET utf8; ...

1 2