• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Unicode/H27-Sep-2020-796562

pod/H27-Sep-2020-728449

t/H27-Sep-2020-329254

Build.PLH A D27-Sep-20202.2 KiB5955

ChangesH A D27-Sep-20202.4 KiB5940

LICENSEH A D27-Sep-20201 KiB2217

MANIFESTH A D27-Sep-2020281 1918

MANIFEST.SKIPH A D27-Sep-20201.3 KiB8150

META.jsonH A D27-Sep-20201.9 KiB7170

META.ymlH A D27-Sep-20201.1 KiB4342

Makefile.PLH A D27-Sep-20202.1 KiB5748

READMEH A D27-Sep-2020886 3123

README

1Unicode::MapUTF8 - Conversions to and from arbitrary character sets and UTF8
2
3Provides an adapter layer between core routines for converting
4to and from UTF8 and other encodings. In essence, a way to give
5multiple existing Unicode modules a single common interface so
6you don't have to know the underlaying implementations to do
7simple UTF8 to-from other character set string conversions.
8As such, it wraps the Unicode::String, Unicode::Map8,
9Unicode::Map and Jcode modules in a standardized and simple
10API.
11
12Mainly intended for use with Perl 5.6 and 5.0 since starting
13with Perl 5.8 the Encode modules are the preferred way of
14handling character set encodings.
15
16To install:
17
18perl Makefile.PL
19make
20make test
21make install
22
23Alternatively, if you have Module::Build installed,
24
25perl Build.PL
26./Build
27./Build test
28./Build install
29
30See 'perldoc Unicode::MapUTF8' for the documentation.
31