Hello,
I have a vague understanding of what is occurring here but not a suitable solution. I have a flow that pulls information from fields in a PowerApp and collects them for an email. One of the fields is free text entry; as the title suggests the flow failed because a user had double quotes (") in the text:

Aside from telling users not to use double quotes for now, I'm unsure how to deal with this. This is something I;ve cobbled together from various tutorials without much experience, so whehn things go wrong I'm kind of stuck.
If anyone has any suggestions of further information is required, please let me know.
edit: I was using this tutorial to create the flow initially:
https://immersivecoder.com/2020/03/11/how-to-parse-json-object-and-get-variable-values-in-power-automateflow-part-2/
I note that one of the functions is removing backslash characters, used to separate values:
replace(variables('ObjString'),'\','I wonder if this is causing the issue, since it is also removing \ when used to escape characters.