Yes. If we take contact us form for example. You add to general settings -> redirect to URL:
Something like ~/SpecialPages/formresult.aspx?id={%ContactUsID%}
where is the url your redirect page. ContactUsID - ID field from your form (I would recommend to create unique identifier field (GUID ) and use it instead of id but for simplicity I use ContactUsID here).
Lets say my form has a couple more fields: email, phoneNumber and message, then on your result page (/SpecialPages/formresult.aspx) add static text web part and add macro:
{%
row = SiteObjects.Forms["ContactUs"].Items.Where("ContactUsID =" + QueryString["id"]).FirstItem;
row["PhoneNumber"] + " " + row["email"] + " " + row["message"]
|(identity)GlobalAdministrator%}
P.S. Depends on your version form can be accessed a bit differently.