Previous Page | Next Page

Formats for NLS

$UCS2Lw. Format



Processes a character string that is in the encoding of the current SAS session, and then writes the character string in little-endian, 16-bit, UCS2, Unicode encoding.
Category: Character
Alignment: left

Syntax
Syntax Description
Details
Comparison
Example
See Also

Syntax

$UCS2Lw.


Syntax Description

w

specifies the width of the output field. Specify enough width to accommodate the 16-bit size of the Unicode characters.

Default: 8
Range: 2-32767

Details

The $UCS2Lw. format writes a character string in little-endian, 16-bit, UCS2 (universal character set code in two octets), Unicode encoding. It processes character strings that are in the encoding of the current SAS session.


Comparison

The $UCS2Lw. format performs processing that is the opposite of the $UCS2LEw. format.


Example

This example uses the Japanese Shift_JIS encoding, which is supported under the UNIX operating environment.

Statements Result

----+----1
x = ' [untitled graphic]';

put x $ucs2l2.;
'2759'x (binary)


See Also

Formats:

$UCS2Bw. Format

$UCS2LEw. Format

$UCS2Xw. Format

$UTF8Xw. Format

Informats:

$UCS2Bw. Informat

$UCS2Lw. Informat

$UCS2LEw. Informat

$UCS2Xw. Informat

$UTF8Xw. Informat

Previous Page | Next Page | Top of Page