Trying to send an email listing enrolled students to course tutors with their learner plans, but when adding the hyperlink field from the SQL table, Power Automate is adding an extra back slash at the beginning and end of the hyperlink, breaking the HTML tag. This occurs inside a ForEach loop. I've tried using replace, but that did nothing. I also tried using concat to no effect, expression as follows:
concat('<a href="', item()?['hyperlink'], '">', item()?['student_forenames'], ' ', item()?['student_surname'], '</a>')
Any ideas on how to get around this odd quirk?

