-
-
13 Oct 2021 08:39:09 UTC
- Distribution: Encode
- Module version: 2.03
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Repository
- Issues (49)
- Testers (2408 / 15 / 0)
- Kwalitee
Bus factor: 5- % Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (1.96MB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 83 contributors-
Dan Kogai
-
Alex Davies
-
Alex Kapranoff
-
Alex Vandiver
-
Andreas J. Koenig
-
Andrew Pennebaker
-
Andy Grundman
-
Anton Tagunov
-
Autrijus Tang
-
Benjamin Goldberg
-
Bjoern Hoehrmann
-
Bjoern Jacke
-
bulk88
-
Craig A. Berry
-
Curtis Jewell
-
Dave Evans
-
David Golden
-
David Steinbrunner
-
Deng Liu
-
Dominic Dunlop
- drry
-
Elizabeth Mattijsen
-
Flavio Poletti
-
Gerrit P. Haase
-
Gisle Aas
-
Graham Barr
-
Graham Knop
-
Graham Ollis
-
Gurusamy Sarathy
-
H.Merijn Brand
-
Hugo van der Sanden
-
chansen
-
Chris Nandor
-
Inaba Hiroto
-
Jarkko Hietaniemi
-
Jesse Vincent
-
Jungshik Shin
-
Karen Etheridge
-
Karl Williamson
-
Kenichi Ishigaki
-
KONNO Hiroharu
-
Laszlo Molnar
-
Makamaka
-
Mark-Jason Dominus
-
Masahiro Iuchi
-
MATSUNO Tokuhiro
-
Mattia Barbon
-
Michael G Schwern
-
Michael LaGrasta
-
Miron Cuperman
-
Moritz Lenz
-
MORIYAMA Masayuki
-
Nick Ing-Simmons
-
Nicholas Clark
-
Olivier Mengué
- otsune
-
Pali
-
Paul Marquess
-
Peter Prymmer
-
Peter Rabbitson
-
Philip Newton
-
Piotr Fusik
-
Rafael Garcia-Suarez
-
Randy Stauner
-
Reini Urban
-
Robin Barker
-
SADAHIRO Tomoyuki
-
Simon Cozens
-
Slaven Rezic
-
Spider Boardman
-
Steve Hay
-
Steve Peters
-
SUGAWARA Hajime
-
SUZUKI Norio
-
szr8
-
Tatsuhiko Miyagawa
-
Tels
-
Tony Cook
-
Vadim Konovalov
-
Victor
-
Ville Skyttä
-
Vincent van Dam
-
Yitzchak Scott-Thoennes
- Dependencies
- Exporter
- Storable
- parent
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Encode::KR - Korean Encodings
SYNOPSIS
use Encode qw/encode decode/; $euc_kr = encode("euc-kr", $utf8); # loads Encode::KR implicitly $utf8 = decode("euc-kr", $euc_kr); # ditto
DESCRIPTION
This module implements Korean charset encodings. Encodings supported are as follows.
Canonical Alias Description -------------------------------------------------------------------- euc-kr /\beuc.*kr$/i EUC (Extended Unix Character) /\bkr.*euc$/i ksc5601-raw Korean standard code set (as is) cp949 /(?:x-)?uhc$/i /(?:x-)?windows-949$/i /\bks_c_5601-1987$/i Code Page 949 (EUC-KR + 8,822 (additional Hangul syllables) MacKorean EUC-KR + Apple Vendor Mappings johab JOHAB A supplementary encoding defined in Annex 3 of KS X 1001:1998 iso-2022-kr iso-2022-kr [RFC1557] --------------------------------------------------------------------
To find how to use this module in detail, see Encode.
BUGS
When you see
charset=ks_c_5601-1987
on mails and web pages, they really mean "cp949" encodings. To fix that, the following aliases are set;qr/(?:x-)?uhc$/i => '"cp949"' qr/(?:x-)?windows-949$/i => '"cp949"' qr/ks_c_5601-1987$/i => '"cp949"'
The ASCII region (0x00-0x7f) is preserved for all encodings, even though this conflicts with mappings by the Unicode Consortium.
SEE ALSO
Module Install Instructions
To install Encode, copy and paste the appropriate command in to your terminal.
cpanm Encode
perl -MCPAN -e shell install Encode
For more information on module installation, please visit the detailed CPAN module installation guide.