CONVERTCP SYNTAX
================

CONVERTCP input_CP output_CP /i input_file /o output_file

The code page identifier (input_CP or output_CP) can be one of the following:
- UTF-8, 0 (= Windows ANSI), 1 (= Windows OEM)
- A XyWrite Service Pack CP defined in an encoding file: CP437, CP850, CP775, CP852, CP857, CP866X
- A numerical identifier shown by running 'CONVERTCP /L'.

Unicode to XyWrite CP:
----------------------

CONVERTCP UTF-8 CP437 /I UTF-8.TXT /O XY_CP437.TXT
- converts Unicode text to XyWrite CP437

CONVERTCP UTF-8 CP866X /I UTF-8.TXT /O XY_CP866.TXT
- converts Unicode text in Russian or Ukrainian, etc., to XyWrite CP866X

Windows ANSI to XyWrite CP:
---------------------------

CONVERTCP 0 CP850 /I ANSI.TXT /O XY_CP850.TXT
- converts Windows ANSI text to XyWrite CP850

XyWrite CP to Unicode:
----------------------

CONVERTCP CP437 UTF-8 /I XY_CP437.TXT /O UTF-8.TXT
- converts XyWrite CP437 to Unicode text

CONVERTCP CP866X UTF-8 /I XY_CP866.TXT /O UTF-8.TXT
- converts XyWrite CP866X text in Russian or Ukrainian, etc., to Unicode

Windows XyWrite CP to ANSI:
---------------------------

CONVERTCP CP850 0 /I XY_CP850.TXT /O ANSI.TXT
- converts XyWrite CP850 text to Windows ANSI