You can do this in the database. Find the userid from the qa_users table, then update the qa_posts table to change the "type" field from Q_HIDDEN to Q, A_HIDDEN to A and C_HIDDEN to C.
For example this SQL query would work for the comments and userid of 1234:
UPDATE qa_posts SET type='C' WHERE type='C_HIDDEN' AND userid=1234