Latin1 - ISO-8859-1.

learn more… | top users | synonyms

0
votes
0answers
17 views

What is utf8 encode - decode?

I'm importing my phpbb utf8 DB into a vb latin1_swedish_ci DB. In the converter I've these two lines (default): define('use_utf8_encode', false); define('use_utf8_decode', true); How should I set ...
0
votes
0answers
21 views

MYSQL - From utf8_bin to latin1_swedish_ci

I've imported phpbb records to vbulletin using impex. But now I've a problem with charset. PHPBB was in utf8, vbulletin is in latin1. How can i convert EVERY characters? I've seen this code: Detecting ...
0
votes
1answer
37 views

Converting string unicode to latin

I have the following result from some http requests: Tratamento\ da\ rejei\u00E7\u00E3o\ no\ cancelamento\ da\ desagrega\u00E7\u00E3o i did some research and i was able to find this line of code, ...
0
votes
2answers
42 views

UnicodeEncodeError:'latin-1' codec can't encode characters in position 0-1: ordinal not in range(256)

i am a newer in python.Today when I write some search function I met an error.well, I use sqlalchemy orm to do that, in my function,I input a chinese word as the key word.The html page give me an ...
0
votes
2answers
40 views

Case insensitivity for SQL LIKE when contents is latin1

I attempted to apply the solution posted on case insensitive for sql LIKE wildcard statement, but I'm given the error 1253 - COLLATION 'utf8_general_ci' is not valid for CHARACTER SET 'latin1' ...
0
votes
1answer
29 views

Import sql as latin-1

I have an existing sql file which I want to import into a MySQL database 5.5 After import I do an: SELECT * FROM address; and instead of 'Straße' I get 'Straße' The import command is: mysql -uroot ...
2
votes
1answer
37 views

Changing character set in MySQL

When I started my website I set all the table columns to "utf8_general_ci" thinking this would make everything store in UTF8. According to the mysql_client_encoding() function in PHP, I've been ...
2
votes
1answer
48 views

Cannot split a seemingly encoded string

While parsing data from a web request, I came across the following string - dateRange = 'September\xa04,\xa01978 – September 1980' The encoding of the extracted string seems to be Latin-1 (based on ...
0
votes
2answers
109 views

Wrong encoding being saved in MySql database..Windows 7, Wamp server

I am using Wamp server 2.1 on windows 7 with PHP 5.3.4, Apache 2.2.17, MySql 5.1.53. httpd.conf: AddDefaultCharset "iso-8859-1" php.ini: default_charset = "iso-8859-1" I am using php mysqli class ...
0
votes
0answers
139 views

mysqldump exporting data in a bad character set

Yesterday for the first time I exported my Mysql database and I found some very strange characters in the dump such as: INSERT INTO `piwik_archive_blob_2013_01` VALUES ...
0
votes
0answers
62 views

Strange characters after inserting string from utf8_decode into a mysql table with PHP 5.3/Doctrine 1.2

I'm consuming a xml (i get it by a rest service). At one point i decode a CDATA field as: $version_doc = $this->getSimpleXml($uri); if($version_doc != false){ $equipment = ...
0
votes
1answer
58 views

PHP charset conversion

I had previously encoded MySQL data in latin1. Now, I've converted it to UTF-8 in MySQL but the data is still saved in latin1. UTF-8 data that was originally stored as Latin-1 has not converted ...
0
votes
2answers
57 views

Find out character encoding of straße

I'm struggling with the encoding of the content of an external interface. In the MySQL database the collation is latin1_swedish_ci. Also the collation of the field ist latin1_swedish_ci. The php ...
2
votes
1answer
172 views

PostgreSQL: character of encoding “UTF8” has no equivalent in “LATIN1” in plperl stored procedure

I have this stored procedure written in Pl/Perl: CREATE FUNCTION strip_html_tags(text) RETURNS TEXT AS $$ use HTML::Strip; my $hs = HTML::Strip->new(); my $clean_text = ...
0
votes
1answer
137 views

Upgrading Rails 3 app from Ruby 1.8.7 to 1.9.3 stops respecting latin1 encoding specification in database.yml

I'm upgrading a Rails 3.2.13 application from Ruby 1.8.7-p370 to Ruby 1.9.3-p385. After upgrading, special characters are garbled in text retrieved from the database. For instance "café" appears as ...
0
votes
1answer
34 views

best character set and collation for storing Tags, and URLs in MySQL DB

I'm retrieving photos info from Flickr into my site. For each photo, the URL, title, and tags are saved in MySQL database. I read a lot about the most suited character set for such values and I ...
0
votes
1answer
64 views

Display latin character in html

I have a PHP object displaying values as below when I use var_dump($obj): object() (1) { ["name"]=> string(3) "Lê" ... } But when I print $obj->name, the browser displays "Lê" instead. My browser ...
0
votes
3answers
44 views

Django Latin Characters do not work

I'm trying to solve this issue when importing a CSV file. I try to save a string variable that contains latin-1 characters and when I try to print them, it changes it to an encoding. Is there anything ...
1
vote
1answer
170 views

Is there an existing mapping from utf8 to latin-1? Python

Is there a mapping from utf8 to normalized non-accented letters in both latin-1 and utf8? I have been getting errors such as: UnicodeEncodeError: 'latin-1' codec can't encode character u'\u010d' in ...
0
votes
1answer
586 views

Postgres issue encoding “UTF8” has no equivalent in encoding “LATIN1”

Our postgres production database server has a database called crd_production which is born out of the template1 template database. Incidentally, on an Ubuntu 12.04 box, the default encoding of the ...
0
votes
0answers
172 views

Swedish characters cannot be saved correctly in MySQL database

I have a stand alone java program that opens a text file in UTF-8 mode and read each line in the file containing Swedish characters like å, ä, ö. The text file has been saved in utf-8 mode. The java ...
1
vote
2answers
212 views

Python converting latin1 to UTF8

In Python 2.7, how do you convert a latin1 string to UTF-8. For example, I'm trying to convert é to utf-8. >>> "é" '\xe9' >>> u"é" u'\xe9' >>> u"é".encode('utf-8') ...
0
votes
1answer
83 views

MySQL illegal mix of collations with all utf8 db/tables/columns

I don't get it. I never really got it, but now I'm really lost. My database is utf8, my tables are utf8 and my columns are utf8. Some of the data is latin1/iso-8859-1, so it just displays wrong. (I ...
0
votes
1answer
34 views

Extended charsets chars not reccognized and converting to ? mark

I have a string contain some special char like "\u2012" i.e. FIGURE DASH. When i am trying to print this on console I am getting a '?' mark instead of its symbol. I have an editor where in I can ...
0
votes
1answer
574 views

Convert latin1 to UTF8 in C# [duplicate]

Possible Duplicate: Convert Latin 1 encoded UTF8 to Unicode I want to convert latin1 (ISO-8859-1) to UTF8 in C#. What is the best way to do this? My string is "Công ty TNHH TM ...
2
votes
1answer
512 views

UTF-8 data in Latin1 database: can it be saved?

I have a rails app that receives data from an Android device. I noticed that some of the data, when in Japanese, is not saved correctly. It shows up as literal question marks (not the diamond ones) in ...
1
vote
2answers
185 views

Strip down everything, except alphanumeric and European characters in PHP

I am working on validating my commenting script, and I need to strip down all non-alphanumeric chars except those used in Western Europe. My plan is to regex out all non-alphanumeric characters with: ...
0
votes
1answer
161 views

How i encoding this UTF-8 string to ASCII for inserting it into latin1 database? [closed]

i have this string : dsfssdsdfdsf « ظ…ط¯ظˆظ†ط© ط£ط­ظ…ط¯ ط§ظ„ط®ظˆط§ط¬ط© it's encoded in UTF-8 , i extracted it from a remote page , which i fetched it's contents using file_get_contents function ...
1
vote
1answer
183 views

Which encoding to use while reading Excel using xlrd

I am trying to read an Excel file using xlrd to write into txt files. Everything is being written fine except for some rows which has some spanish characters like 'Téd'. I can encode those using ...
2
votes
1answer
180 views

Can write to stdout using latin-1 encoding but not to a file (Python 2.6) [closed]

I have data which is unicode and wish to write it to a file. I am using python 2.6. I am able to print the encoded values but am not able to write it to a file. The default encoding for the ...
1
vote
1answer
47 views

Can someone help me understand why I should or should not convert all my columns from latin1_swedish_ci to utf8_unicode_ci?

I know this has been asked many times, but I'm having a hard time understanding the difference in collation and encoding. OK, so we have a MySQL database (several actually) that have tables with ...
1
vote
0answers
134 views

How to fix broken encoded characters in a latin1 encoded column

I have a latin1 table that was filled with different encoded data for a long time so it contains a lot of broken characters. I was trying to fix that and How to detect UTF-8 characters in a Latin1 ...
0
votes
1answer
148 views

How to deal with legacy app storing Arabian characters in latin1 database

I now work on a web-base PHP app to work with a MySQL Server database . database is with Latin1 Character set and all Persian texts don't show properly . database is used with a windows software Show ...
0
votes
3answers
625 views

how to convert é,ê,… in database mysql to the normal string é,â,… using php?

There are the problems of data in mysql. Some data store with the string like (1):"hello & hello ' hello è ...". And some data store with the string like (2):"hello à ...
1
vote
2answers
451 views

How to convert a String from UTF8 to Latin1 in C/C++?

The question I have is quite simple, but I couldn't find a solution so far: How can I convert a UTF8 encoded string to a latin1 encoded string in C++ without using any extra libs like libiconv? ...
2
votes
0answers
81 views

Decoding special char from .rtf or .doc using php

i am trying to find a clean way to decode some "special characters" using php, i have an RTF file (aslo PDF and DOC with sane kind of issue), i manage to open it and find clear text in it, put at the ...
3
votes
1answer
804 views

PHP MySQL using Latin1(iso-8859-1) despite UTF-8 settings

Once again I have a weird and tricky problem. I've been working with converting my MySQL databases (and everything else on my server for that matter) to UTF-8 to avoid having to convert text when ...
0
votes
0answers
164 views

Tornado Lookup Error: unknown encoding: latin1

I'm trying to benchmark a simple Tornado Server made using tornado.httpserver and I get the following error, when using apache bench with 1000 or more concurrent connections on a Solaris machine. ...
0
votes
1answer
202 views

Character encoding issues with MySQL - Collation set to UTF-8, but text stored as ISO Latin 1

I have a table for which the collation is set to ut8_general_ci. The columns in the table are also set to this encoding. For some reason though, when I view my table in MySQL the text in the table ...
0
votes
1answer
453 views

How to convert old database in mysql form latin1 to utf8

I have a database in latin1 format, all the utf8 character stored are shown as ???? +------+---------+-------+---------+--------------------+----------+-------------------- ...
0
votes
0answers
107 views

After migrating db php returns latin1 charset, but in DB - cp1251

I need to transfer my mysql DB from windows server to Ubuntu server. So i made export in phpmyadmin on win and imported *.sql file in linux. In linux PMA all looks okay, tables are healthy, no errors, ...
1
vote
1answer
210 views

Codeigniter error with chatset latin1 (Vbulletin)

i using codeigniter make an project, it as follow. i want to connect to mysql of Vbulletin and show in my project, i save code with UTF-8 not DOM, it show ok but i see at Chrome and IE error HEAD ...
3
votes
3answers
263 views

Proper handing of UTF-8 in Perl

I have been given a file, (probably) encoded in Latin-1 (ISO 8859-1), and there are some conversions and data mining to be done with it. The output is supposed to be in UTF-8, and I have tried about ...
3
votes
1answer
257 views

ISO 8859-1 filename not decoding

I'm extracting files from MIME messages in a python milter and am running across issues with files named as such: =?ISO-8859-1?Q?Certificado=5FZonificaci=F3n=5F2010=2Epdf?= I can't seem to decode ...
1
vote
1answer
319 views

API or Method to Replace all non-latin-1 characters

I'm dealing with a 3rd party API / Web Service and they only allow latin-1 character set in their XML. Is there an existing API / method that will find and replace all non-latin-1 characters in a ...
3
votes
2answers
360 views

Why is it direct commented Encoded string not converting to Arabic?

NSString * string = @"االْحَمْدُ لِلَّهِ رَبِّ الْعَالَمِينَ"; const char *c = [string cStringUsingEncoding:NSUTF8StringEncoding]; NSString *newString = [[NSString alloc]initWithCString:c ...
2
votes
1answer
1k views

Special characters get lost in MySQL export/import

I'm trying to move a MySQL 3.23.58 database to a different server running 5.5.19. The old one has latin1 encoding specified, and as far as I can tell the underlying data is indeed honestly latin1. I ...
0
votes
1answer
109 views

understanding file encodings

in eclipse, I have a file where some place this is written: onclick='obj1.help_open_new_window(fn1(), "/redir/url_name")' and in eclipse Edit menu->set encoding, I see this: Now I change the ...
3
votes
1answer
120 views

Strange delimited hex in MySQL - need to convert to UTF8

OK. So I have a large, legacy database that is backing a high traffic website. The tables are latin1 encoded and I'm in the process of converting to UTF-8. We have converted the site to Rails, and we ...
-1
votes
3answers
216 views

What happens if your input file contains some unsupported character?

I have this text file which might contain some unsupported characters in the Latin1 character set, which is the default character set of my JVM. What would those characters be turned into when my ...

1 2 3