uconv (1) Linux Manual Page
NAME
uconv – convert data from one encoding to another
SYNOPSIS
uconv [ -h, -?, –help ] [ -V, –version ] [ -s, –silent ] [ -v, –verbose ] [ -l, –list | -l, –list-code code | –default-code | -L, –list-transliterators ] [ –canon ] [ -x transliteration ] [ –to-callback callback | -c ] [ –from-callback callback | -i ] [ –callback callback ] [ –fallback | –no-fallback ] [ -b, –block-size size ] [ -f, –from-code encoding ] [ -t, –to-code encoding ] [ –add-signature ] [ –remove-signature ] [ -o, –output file ] [ file… ]
DESCRIPTION
uconv converts, or transcodes, each given file (or its standard input if no file is specified) from one encoding to another. The transcoding is done using Unicode as a pivot encoding (i.e. the data are first transcoded from their original encoding to Unicode, and then from Unicode to the destination encoding).
If an encoding is not specified or is –, the default encoding is used. Thus, calling uconv with no encoding provides an easy way to validate and sanitize data files for further consumption by tools requiring data in the default encoding.
When calling uconv, it is possible to specify callbacks that are used to handle invalid characters in the input, or characters that cannot be transcoded to the destination encoding. Some encodings, for example, offer a default substitution character that can be used to represent the occurrence of such characters in the input. Other callbacks offer a useful visual representation of the invalid data.
uconv can also run the specified transliteration on the transcoded data, in which case transliteration will happen as an intermediate step, after the data have been transcoded to Unicode. The transliteration can be either a list of semicolon-separated transliterator names, or an arbitrarily complex set of rules in the ICU transliteration rules format.
For transcoding purposes, uconv options are compatible with those of iconv(1), making it easy to replace it in scripts. It is not necessarily the case, however, that the encoding names used by uconv and ICU are the same as the ones used by iconv(1). Also, options that provide informational data, such as the -l, –list one offered by some iconv(1) variants such as GNU’s, produce data in a slightly different and easier to parse format.
OPTIONS
-h,-?,–help- Print help about usage and exit.
-V,–version- Print the version of
uconvand exit. -s,–silent- Suppress messages during execution.
-v,–verbose- Display extra informative messages during execution.
-l,–list- List all the available encodings and exit.
-l,–list-codecode- List only the code encoding and exit. If code is not a proper encoding, exit with an error.
–default-code- List only the name of the default encoding and exit.
-L,–list-transliterators- List all the available transliterators and exit.
–canon- If used with
-l,–listor–default-code, the list of encodings is produced in a format compatible withconvrtrs.txt(5). If used with-L,–list-transliterators, print only one transliterator name per line. -xtransliteration- Run the given transliteration on the transcoded Unicode data, and use the transliterated data as input for the transcoding to the destination encoding.
–to-callbackcallback- Use callback to handle characters that cannot be transcoded to the destination encoding. See section
CALLBACKSfor details on valid callbacks. -c- Omit invalid characters from the output. Same as
–to-callback skip. –from-callbackcallback- Use callback to handle characters that cannot be transcoded from the original encoding. See section
CALLBACKSfor details on valid callbacks. -i- Ignore invalid sequences in the input. Same as
–from-callback skip. –callbackcallback- Use callback to handle both characters that cannot be transcoded from the original encoding and characters that cannot be transcoded to the destination encoding. See section
CALLBACKSfor details on valid callbacks. –fallback- Use the fallback mapping when transcoding from Unicode to the destination encoding.
–no-fallback- Do not use the fallback mapping when transcoding from Unicode to the destination encoding. This is the default.
-b,–block-sizesize- Read input in blocks of size bytes at a time. The default block size is 4096.
-f,–from-codeencoding- Set the original encoding of the data to encoding.
-t,–to-codeencoding- Transcode the data to encoding.
–add-signature- Add a U+FEFF Unicode signature character (BOM) if the output charset supports it and does not add one anyway.
–remove-signature- Remove a U+FEFF Unicode signature character (BOM).
-o,–outputfile- Write the transcoded data to file.
CALLBACKS
uconv supports specifying callbacks to handle invalid data. Callbacks can be set for both directions of transcoding: from the original encoding to Unicode, with the –from-callback option, and from Unicode to the destination encoding, with the –to-callback option.
The following is a list of valid callback names, along with a description of their behavior. The list of callbacks actually supported by uconv is displayed when it is called with -h, –help.
substitute- Write the encoding’s substitute sequence, or the Unicode replacement character
U+FFFDwhen transcoding to Unicode. skip- Ignore the invalid data.
stop- Stop with an error when encountering invalid data. This is the default callback.
escape- Same as
escape-icu. escape-icu- Replace the missing characters with a string of the format
%Uhhhh for plane 0 characters, and%Uhhhh%Uhhhh for planes 1 and above characters, where hhhh is the hexadecimal value of one of the UTF-16 code units representing the character. Characters from planes 1 and above are written as a pair of UTF-16 surrogate code units. escape-java- Replace the missing characters with a string of the format
