Converts a file with characters in any supported character encoding to one with ASCII and/or Unicode escapes, or visa versa.
native2ascii [options] [inputfile [outputfile]]
native2ascii converts files that are encoded to any
character encoding that is supported by the Java runtime
environment to files encoded in ASCII, using Unicode escapes
("\uxxxx" notation) for all characters that are not part of the
ASCII character set. This process is required for properties files
containing characters not in ISO-8859-1 character sets. The tool
can also perform the reverse conversion.
If outputfile is omitted, standard output is used
for output. If, in addition, inputfile is omitted,
standard input is used for input.
-reverse-encoding encoding_namejava.nio.charset.Charset.defaultCharset method) is
used. The encoding_name string must be the name of a
character encoding that is supported by the Java runtime
environment - see the Supported
Encodings document.