In MS SQL I can use TRANSLATE. But in Dataverse, everything that I find is to use Power Automate, or use substitute (which never works).
Thanks for the help.
replace(
replace(
replace(
replace(triggerBody()?['text'], '&', '&'),
'<', '<'
),
'>', '>'
),
'"', '"'
)