in reply to Re: Unicode Help
in thread Unicode Help

Hey, thanks for the link. My issue isn't really with unicode I think, but trying to encode the string I want to send into a 16bit format. Is there an easy way to do this?

Replies are listed 'Best First'.
Re: Re: Re: Unicode Help
by halley (Prior) on Mar 17, 2004 at 17:33 UTC
    You'll need to find out what *encoding* they really want, and then target that *encoding*.

    You have two choices: look at some examples and decide something arbitrarily, like "the first byte is ASCII, the second byte is zero," or you can actually find out what the application is expecting. The former can get you running, the latter will avoid sticky problems when a message must include non-ASCII characters like u-with-umlauts or capital-sigma or elvish-parma.

    If you find the actual *encoding* standard they expect, you'll probably find a Perl module that will help you encode to that scheme without much fuss. It would be a rare standard that forced you to encode things yourself, but the perl builtin functions pack and unpack are a good start to your solution.

    --
    [ e d @ h a l l e y . c c ]