Here's how to do this without using rept / regex with special characters / split / or join:
=REDUCE("", SEQUENCE(1, LEN(A1)), LAMBDA(k, i, MID(A1, i, 1) & k))
Note: Drop this into a Named Function like REVERSE(text) and replace both A1's above with the "text" parameter.