Questions tagged [iconv]

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

iconv can refer to one of three things:

  1. The iconv() API call standardised as part of the POSIX specification.
  2. The iconv command-line utility, also part of the POSIX specification.
  3. The libiconv library, a GNU project that implements the iconv() API and command-line utility.

In all cases, the API/utility/library is used to convert text between different formats.

631 questions
-4
votes
1 answer

In which unicode encoding is the euro sign, which I can give to php's iconv?

This works in php cli (on the command line), php > echo bin2hex(iconv("utf-8","iso-8859-1","\xc3\xa9")); e9 That is, because I know the name of the unicode encoding of u20ac: latin-1, which is a part of iso-8859-1. I want to do the same for the…
ericj
  • 2,138
  • 27
  • 44
1 2 3
42
43