I want to save the value inside the Edit Box and the UTF-16 (Little Endian) value in a file. I will give a simple example to better understand my question:
Edit Box Value => 'Good';
Hex value = FFFEFF15410042004300
which is equivalent to UTF-16 (Little Endian) => ᗿABC
Now I want the value of Good and ᗿABC to be saved in a file, so that if we open the saved file with notepad, it will display the value: (ᗿABCGood) and if we open it with Hex Editor, it will display the value: (FFFEFF1541004200430047006F006F006400).