I am currently building a flow that should read the contents of a .msg file. This file is base64 encoded and when transferring the data held in this to an online base64 decoder I am returned the appropriate information however, when I use the base64ToString() expression in my power automate flow it returns this data in the following format:
(sample of data)
"
��\u0011ࡱ\u001a�\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000>\u0000\u0003\u0000��\t\u0000\u0006\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u0000\u0000����
..."
using an online UTF16 decoder against this data returns this information in a string format where the details I require can be selected. Is there any way to achieve this entirely through a flow? or any reason why the base64ToString() expression is returning my original request in this format?