| 1 | NAME |
|---|
| 2 | Encode::JP::Mobile - Shift_JIS variants of Japanese Mobile phones |
|---|
| 3 | |
|---|
| 4 | SYNOPSIS |
|---|
| 5 | use Encode::JP::Mobile; |
|---|
| 6 | |
|---|
| 7 | my $char = "\x82\xb1\xf9\x5d\xf8\xa0\x82\xb1"; |
|---|
| 8 | my $string = decode("shift_jis-imode", $char); |
|---|
| 9 | |
|---|
| 10 | DESCRIPTION |
|---|
| 11 | Encode::JP::Mobile is an Encode module to support Shift_JIS variants |
|---|
| 12 | used in Japaese mobile phone browsers. |
|---|
| 13 | |
|---|
| 14 | This module is EXPERIMENTAL. That means API and implementations will |
|---|
| 15 | sometimge be backward incompatible. |
|---|
| 16 | |
|---|
| 17 | ENCODINGS |
|---|
| 18 | This module currently supports the following encodings. |
|---|
| 19 | |
|---|
| 20 | shift_jis-imode |
|---|
| 21 | for DoCoMo pictograms. "shift_jis-docomo" is alias. |
|---|
| 22 | |
|---|
| 23 | shift_jis-vodafone |
|---|
| 24 | for Vodafone pictograms. Since it uses escape sequence, decoding |
|---|
| 25 | algorithm is not based on ucm file. |
|---|
| 26 | |
|---|
| 27 | shift_jis-kddi |
|---|
| 28 | for KDDI/AU pictograms. "shift_jis-ezweb" is alias. |
|---|
| 29 | |
|---|
| 30 | shift_jis-airedge |
|---|
| 31 | for AirEDGE pictograms. "shift_jis-airh" is alias. |
|---|
| 32 | |
|---|
| 33 | NOTES |
|---|
| 34 | * ucm files are based on "cp932.ucm", not "shiftjis.ucm", since it |
|---|
| 35 | looks more appropriate for possible use cases. I'm open for any |
|---|
| 36 | suggesitions on this matter. |
|---|
| 37 | |
|---|
| 38 | * Pictogram characters are defined to be round-trip safe. However, |
|---|
| 39 | they use Unicode Private Area for such characters, that means you'll |
|---|
| 40 | have interoperability issues, which this module doesn't try to |
|---|
| 41 | solve. |
|---|
| 42 | |
|---|
| 43 | TODO |
|---|
| 44 | * Support KDDI encodings for 7bit E-mail ("iso-2022-jp-kddi"). |
|---|
| 45 | |
|---|
| 46 | * Implement all merged "shift_jis-mobile-jp" encoding. |
|---|
| 47 | |
|---|
| 48 | AUTHOR |
|---|
| 49 | Tatsuhiko Miyagawa <miyagawa@bulknews.net> |
|---|
| 50 | |
|---|
| 51 | This library is free software, licensed under the same terms with Perl. |
|---|
| 52 | |
|---|
| 53 | SEE ALSO |
|---|
| 54 | Encode, HTML::Entities::ImodePictogram |
|---|
| 55 | |
|---|
| 56 | http://www.nttdocomo.co.jp/p_s/imode/make/emoji/ |
|---|
| 57 | http://www.au.kddi.com/ezfactory/tec/spec/3.html |
|---|
| 58 | http://developers.vodafone.jp/dp/tool_dl/web/picword_top.php |
|---|
| 59 | http://www.willcom-inc.com/p_s/products/airh_phone/homepage.html |
|---|
| 60 | |
|---|