iconv
Package: WA2L/WinTools 1.2.08
Section: Library Commands (3)
Updated: 2014-07-08
Index
Return to Main Contents
NAME
iconv - convert text from one character encoding to another
SYNOPSIS
iconv
[options]
[-f from-encoding]
[-t to-encoding]
[inputfile]...
DESCRIPTION
The
iconv
program reads in text in one encoding and outputs the text in another
encoding.
If no input files are given, or if it is given as a dash (-),
iconv
reads from standard input.
If no output file is given,
iconv
writes to standard output.
If no
from-encoding
is given, the default is derived
from the current locale's character encoding.
If no
to-encoding
is given, the default is derived
from the current locale's character
encoding.
OPTIONS
- -f from-encoding, --from-code=from-encoding
-
Use
from-encoding
for input characters.
- -t to-encoding, --to-code=to-encoding
-
Use
to-encoding
for output characters.
If the string
//IGNORE
is appended to
to-encoding,
characters that cannot be converted are discarded and an error is
printed after conversion.
If the string
//TRANSLIT
is appended to
to-encoding,
characters being converted are transliterated when needed and possible.
This means that when a character cannot be represented in the target
character set, it can be approximated through one or several similar
looking characters.
Characters that are outside of the target character set and cannot be
transliterated are replaced with a question mark (?) in the output.
- -l, --list
-
List all known character set encodings.
- -c
-
Silently discard characters that cannot be converted instead of
terminating when encountering such characters.
- -o outputfile, --output=outputfile
-
Use
outputfile
for output.
- -s, --silent
-
This option is ignored; it is provided only for compatibility.
- --verbose
-
Print progress information on standard error when processing
multiple files.
- -?, --help
-
Print a usage summary and exit.
- --usage
-
Print a short usage summary and exit.
- -V, --version
-
Print the version number, license, and disclaimer of warranty for
iconv.
EXIT STATUS
Zero on success, non-zero on errors.
CONFORMING TO
POSIX.1-2001.
EXAMPLE
Convert text from the ISO 8859-15 character encoding to UTF-8:
$ iconv -f ISO-8859-15 -t UTF-8 < input.txt > output.txt
The next example converts from UTF-8 to ASCII, transliterating when
possible:
$ echo abc ß α € àḃç | iconv -f UTF-8 -t ASCII//TRANSLIT
abc ss ? EUR abc
SEE ALSO
locale(7),
iconv_open(3)
This document was created by man2html
using the manual pages.
Time: 16:33:36 GMT, September 14, 2024