David gave you the preferred method, namely
var b1, b2: Byte; wc: WideChar; ... b1 := WordRec(wc).Lo; b2 := WordRec(wc).Hi;
A few other options (just for fun):
b1 := Lo(Word(wc)); b2 := Hi(Word(wc));
and
b1 := Byte(wc); b2 := Byte(Word(wc) shr 8);
and
b1 := PByte(@wc)^; b2 := PByte(NativeUInt(@wc) + 1)^;
and
var wc: WideChar; bytes: WordRec absolute wc; begin // Magic! The bytes are already found in bytes.Lo and bytes.Hi!
source share