Top "Iconv" questions

iconv is a library and API for converting between different character encodings.

How to Fix Call to undefined function Symfony\Polyfill\Mbstring\iconv_strpos() Issue

I uploaded my Laravel project to server. It displays following error. How to fix it? Fatal error: Call to undefined …

php laravel laravel-5.3 iconv laravel-5.4
Removing invalid/incomplete multibyte characters

I'm having some issues using the following code on user input: htmlentities($string, ENT_COMPAT, 'UTF-8'); When an invalid …

php utf-8 iconv
How do I link glibc's implementation of iconv?

The GNU C library provides an implementation of iconv - how do I use it? Simple program: #include <iconv.…

c linux linker glibc iconv
Failed to build iconv gem on ruby 1.9.2

I fail to install the 'iconv' gem, because of weird build errors. I have build the 'libiconv' from source and …

macos gem ruby-1.9 iconv
Equivalent of Iconv.conv("UTF-8//IGNORE",...) in Ruby 1.9.X?

I'm reading data from a remote source, and occassionally get some characters in another encoding. They're not important. I'd like …

ruby encoding utf-8 iconv
PHP: Problems converting "’" character from ISO-8859-1 to UTF-8

I'm having some issues with using PHP to convert ISO-8859-1 database content to UTF-8. I am running the following …

php utf-8 character-encoding iso-8859-1 iconv
Using iconv to convert from UTF-16BE to UTF-8 without BOM

I'm trying to convert a UTF-16BE encoded file (byte order mark: 0xFE 0xFF) to UTF-8 using iconv like so: …

text utf-8 utf-16 iconv
Is there an iconv with //TRANSLIT equivalent in java?

Is there a way to achieve transliteration of characters between charsets in java? something similar to the unix command (or …

java iconv
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.…

bash encoding iconv
How to use iconv(3) to convert wide string to UTF-8?

I'm trying to use iconv(3) to convert a wide-character string to UTF-8 using the code below. When I run the …

c linux unicode utf-8 iconv