iconv is a computer program and a standardized API used to convert between different character encodings.

learn more… | top users | synonyms

1
vote
1answer
25 views

Change encoding multiple file with iconv in bash

I want to change multiple php files encoding with iconv. I use find and exec option (Reference : http://linux.bigresource.com/Ubuntu-Encoding-Conversion-on-Multiple-Files--4fuXvUwbN.html) find . ...
0
votes
0answers
19 views

How to call iconv() multiple times on different strings?

I want to convert multiple strings using iconv() function. I have this code: size_t e_len = 150; size_t c_len = 1000; char eurl[150] = "aaa"; char edomain[150] ="bbb"; char ...
0
votes
1answer
46 views

PHP strpos on string returned from ldap_search

ok, so here's the problem: I do a search for the userparameters attribute with ldap_search. I needed to get a couple of values out, being "CtxWFHomeDirDrive", "CtxWFHomeDir" and "CtxWFProfilePath" ...
1
vote
1answer
43 views

iconv equivalent code in Java doesn't return same results

I have requirement to encode a file from UTF-8 to Shift_JIS. Previously, this was done using the iconv command as below iconv -f utf8 -t sjis $INPUT_FILE The input file I supply returns an error, ...
0
votes
1answer
64 views

remove diacritics with iconv in ruby on rails not working

i have some problem with removing diacritics with iconv in ruby on rails here is my code: class Diacritics def removeDiacritics(text) dRemover = Iconv.new("ASCII//TRANSLIT", "UTF-8") text ...
0
votes
1answer
87 views

Restore original encoding in Sublime Text 2

I opened a file and didn't noticed that it was in windows-1251 encoding. It was opened as utf-8 encoded file with incorrect characters. Then I pasted there a bunch of code in utf-8 encoding. After ...
0
votes
2answers
68 views

iconv rvm install error

When I try and install iconv by running: rvm pkg install iconv, it fails with this error: Error running 'autoreconf -is --force', please read /usr/local/rvm/log/libiconv/autoreconf.log Configuring ...
-2
votes
1answer
58 views

.ENCODING international chars (hebrew,thai,russian,chinese,…)

international html files archived by wget should contain chars like this (example hebrew and thai:) אב הם and ยคน instead they are saved like this: íäáåãéú and ÃÒ¡à§é How to get the these ...
1
vote
0answers
64 views

Symfony 2 and Goutte

I want to get some information from a site with CP1251 encoding. use Goutte\Client; use Nonlux\Bundle\Entity\News; .... protected function downloadQueuePage(){ $cli = new Client(); ...
2
votes
1answer
377 views

Emoticons in Twitter Sentiment Analysis in r

How do I handle/get rid of emoticons so that I can sort tweets for sentiment analysis? Getting: Error in sort.list(y) : invalid input Thanks and this is how the emoticons come out looking from ...
0
votes
1answer
57 views

How can i change the character set of mysql database with php without changing the correct ones?

I'm currently using a MySQL database, and the previous guy that maintained the database has changed the character set from ISO-8859-1 to UTF-8. Now there is a problem that every ä turns into ä. Now ...
0
votes
2answers
114 views

Encoding issues … windows-1255 to utf 8?

Encoding convert from windows-1255 to utf-8 was asked before I know, but I'm still getting different results and I can't solve it. The first issue is "does php iconv() or mb_convert_encoding() ...
2
votes
0answers
53 views

Forcefully set Encoding from unknown to UTF-8 or any encoding in R?

I am reading data from an old proprietary database. Unfortunately I end up (only for some strings) with Encoding(mychar_vector) returning "unknown". Unfortunately I am using a wrapper around a closed ...
0
votes
1answer
153 views

iconv: Convert from CP1252 to UTF-8

Here is CP1252 encoded string Çàïèñêè ýêñïåäèòîðà i have tried this command: iconv -c -f=WINDOWS-1252 -t=UTF-8 test.txt No luck, getting some weird results: ÊÀÇÀÃÜ ÃÎÂÛÉ ÂÅÊ Here i ...
0
votes
0answers
102 views

Problems converting from UTF-16 to UTF-8

I'm trying to convert a UTF-16 string (obtained from a JSString in spidermonkey 19) into a UTF-8 string. I think the converted string is ok, but for some reason, the conversion routine is adding two ...
0
votes
1answer
189 views

How can I convert a String with \xf6 chars into a human readable one?

Currently I'm working on an Rails application with PayPal checkout. PayPal communicates with my app with IPN messages. In many cases everything works fine, but if someone uses special chars like ...
0
votes
1answer
190 views

Detect charset of string in PHP (UTF-8 or Windows-1256)

I'm working on script based on "Simple HTML DOM" and I want to detect string's charset after getting inner text of URL to convert it to "UTF-8" using iconv(). I've tried a lot of things but non of ...
0
votes
2answers
115 views

Euro symbol breaks mysql insertion process

I have written data crawling engine which does (so far) everything right except it completely stops data inserting process at the point where euro € symbol ocurres in the text. I belive this symbol ...
0
votes
0answers
49 views

Problems after iconv with strlen and strtok

I have written a code to convert an input UCS-2LE file to normal 8 bit ISO-8859-1 text. After I convert it, I am splitting the entire text into words using strtok function. Now I am applying strlen on ...
1
vote
0answers
148 views

Using ICONV on mysql select - transform all characters to standard ascii

I want to search in my database for polish cities which commonly consist of a lot of special characters. I want to migrate those to ASCII, so that even those without a polish keyboard can do a regular ...
0
votes
0answers
103 views

PHP iconv method produces question marks on linux server

I'm using the following PHP code to perform character conversion: setlocale(LC_ALL, 'en_US.utf8'); $result = @iconv('UTF-8', 'ASCII//TRANSLIT', $input); When running on my local machine, the ...
1
vote
2answers
71 views

Having problems transliterating into ASCII

I'm trying to process a file that has a list of city names. My goal is to output a list of those city names transliterated into standard ASCII. For some reason, I just keep running into problems. ...
0
votes
2answers
334 views

Converting Unicode characters into the equivalent ASCII ones

I need to "flatten out" a number of Unicode strings for the purposes of indexing and searching. For example, I need to convert GötheФ€ into ASCII. The last two characters have no close representations ...
0
votes
1answer
128 views

PHP creating slugify (clean URL) links in simple way? iconv malfunction?

I think this is the simplest way to slugify urls. You have any contra-indication? function url_clean($str) { $str = iconv('utf-8', 'us-ascii//TRANSLIT', $str); $clean_str = preg_replace(array( ...
0
votes
0answers
74 views

Ruby EBCDIC conversion with String#encode instead of iconv

I used to do it fine with: Iconv.iconv('ASCII', 'EBCDIC-US', someEBCDICstring) since ruby 1.9 I get that warning: iconv will be deprecated in the future, use String#encode instead. but I can't ...
0
votes
0answers
71 views

Iconv function crashes apache server

This is a rewrite of a previous question which was going on a bit of tangent. I've got some code running on two servers. One on WAMP Apache local server and one on my my University's student server. ...
0
votes
1answer
53 views

linux libiconv transcode from ISO8859 or IBM850 to UTF8 error

I don't know what the original code is, so I assume that the original code is IBM850 or ISO8859-1.My process below IBM850 -> UTF8 if this is OK, I consider the original code is IBM850, if NOK,do ...
0
votes
0answers
106 views

latin1 to utf8 conversion issues

I am converting an old application that uses a mySQL database encoded with latin1. To do this I made a simple rake task and some classes to connect to the old legacy database (MySQL) class ...
0
votes
1answer
39 views

How do I perform a streaming character conversion? [closed]

I have data stored on disk in files that are far too big to store in main memory. I want to stream this data from the disk into a data processing pipeline via iconv, like this: zcat myfile | iconv ...
1
vote
0answers
61 views

iconv does not convert bosnian literals on CentOS, but works on Windows

CentOS Case: When on http://urloment.com/ I post a code snippet of: "ćććć" I will get an output: Ä Like this: http://urloment.com/TG5vg1eC However, when I try the same thing on Windows, it will ...
0
votes
0answers
75 views

Korean hangul in EUC-KR replacement by another string

I have a PHP script using UTF-8 and I need to convert some Korean characters from a website encoded in EUC-KR e.g. "년""->"Year". I have just a few characters, so general character character conversion ...
0
votes
1answer
117 views

c++ using of iconv on Windows with Mingw compiler

Good time of day! I compiled this code with g++ 4.7.2 on Ubuntu successfully, but I have problems with compiling it on Windows with Mingw. Simplified Code: size_t string_length=some_size; char ...
1
vote
2answers
176 views

Steps to enable and use iconv on Windows with Indy 10.5.9

For cross-platform development with Internet Direct (Indy), it can be useful to enable iconv support instead of the OS-specific Windows character conversions. This would allow to continue developing ...
0
votes
0answers
345 views

How to Convert Microsoft Office “Smart” or “Curly” Quote/Apostrophe to ASCII or UTF-8 “Straight” Quote/Apostrophe in Ruby 1.8.7?

I'm using (and stuck with) the following version of Ruby: ruby 1.8.7 (2012-06-29 patchlevel 370) [x86_64-linux] I tried a lot of Googling, but I can't find a working answer to my problem. I'm ...
1
vote
0answers
88 views

getMessage function of Zend_mail_storage_Pop3 returns trimmed header

I am using getMessage function of Zend_mail_storage_Pop3 class to fetch the mime message. My php version is 5.3.3. In some cases getMessage is not returning all the mime headers. On further ...
0
votes
0answers
120 views

iconv is not working properly in linux (C++)

I want to convert a string from 1252 char code set to UTF-8. For this I used iconv library in my c++ application development which is based on linux platform. I used the the API iconv() and ...
4
votes
1answer
365 views

(javascript) or (nodejs in windows) iconv from utf-8 to iso

I'm using nodejs http.get method to post datas to a php But the php's charset is not UTF-8, it's ISO-8859-9 (turkish) So post data's not being inserted to database in correct way, this is my node ...
0
votes
0answers
183 views

how to convert pdf file data read through file_get_contents to readable utf-8 character set format with PHP

I am trying to read and process contents from a .pdf file.The target with this process is not to use any extraneous libraries that are not attached with the raw PHP bootstrap installation.I have tried ...
3
votes
1answer
164 views

How do I statically link iconv on windows using msys?

I am using mingw gcc and msys to build a number of Gnu utilities. In the past, I have had a lot of problems caused by different executables requiring different versions of libiconv, so to avoid the ...
4
votes
1answer
541 views

Transliterate any convertible utf8 char into ascii equivalent

Is there any good solution out there that does this transliteration in a good manner? I've tried using iconv(), but is very annoying and it does not behave as one might expect. Using //TRANSLIT ...
0
votes
1answer
190 views

`iconv` convert and no error BUT `file -i` show it's still *us-ascii* NOT *utf-8*

See, it keep to be us-ascii. iconv success with no warning, but file -bi show it's not converted: $ file -bi tmpaaa text/html; charset=us-ascii $ iconv -f us-ascii -t utf-8 tmpaaa -o tmpb $ cp ...
1
vote
2answers
200 views

Generic way to simplify string, remove diacritics

I'm searching for a method to remove diacritics and other letter marks in a text and simplify it in a way that it is a good fit for a text search index. For removing the diacritics, I already found ...
1
vote
2answers
579 views

php: converting from cp1251 to utf8

I have a problem converting a string from cp1251 to utf8... I need to get some names from database and those names are in cp1251(i'm not the one who made that database, so I can't edit it, but I know ...
0
votes
2answers
580 views

How to convert UTF8 hex to Unicode codepoint in python

I'm making a config file that contains the map of emoji's Unicode and SoftBank Unicode. Now I'm using a python program to scrach this information from ...
1
vote
1answer
912 views

Convert Javascript UTF-8 to ASCII (like Iconv('UTF-8', 'ASCII//TRANSLIT', $string) in PHP)

I'm wondering how it's possible to 'translate' characters in UTF-8 to the closest ASCII equivalent using Javascript, just like Iconv doest in PHP. Example: ü becomes uó becomes o I'd rather not use ...
1
vote
2answers
671 views

Simple UTF8->UTF16 string conversion with iconv

I want to write a function to convert a UTF8 string to UTF16 (little-endian). The problem is, the iconv function does not seem to let you know in advance how many bytes you'll need to store the output ...
0
votes
0answers
120 views

str_replace fails when meets apostrophe into the string

i'm trying to replace every accent or special chars from a string but when str_replace meets an apostrophe it doesn't work as I need... please, how to avoid? The input file is from csv (ISO-8859-1 or ...
1
vote
1answer
327 views

Avoid double conversion when converting windows-1250 to utf8 [duplicate]

Possible Duplicate: How do I convert files between encodings where only some of them are wrong? I use the following command to convert .srt files from windows-1250 to utf-8 from a folder ...
0
votes
0answers
79 views

Export as Excel contains junk characters in ROR. On server it says “Iconv::IllegalSequence (”\225\tTab issues are“…)”

I am having a excel placed in my file system. I picks it and adds data to it for export and email as attachment. On local, it works and sends the mail but the excel content is some junk characters. ...
0
votes
1answer
135 views

iconv library on Mac OS X: strange behavior

I am porting application from CentOS 6 to Mac OS X. It depends on iconv and works in CentOS normally. However, on Mac OS X it doesn't. I see following behavior: const char *codePages[] = { "MAC", ...

1 2 3 4 5