procedure TForm1.Button1Click(Sender: TObject); var x: Integer; begin x := $5ABC; x := x shl 1; ShowMessage(IntToStr(x)); end;