Brass Core Plugins

utf16

Provides an encoder for the UTF-16 format.

Remarks

This encoding works with the compiler's little or big endian setting.

Example

Endianness

.stringencoder utf16

.little 
.db "abc \u266B"
; Outputs $61, $00, $62, $00, $63, $00, $20, $00, $6B, $26


.big
.db "abc \u266B"
; Outputs $00, $61, $00, $62, $00, $63, $00, $20, $26, $6B

See Also