How to delete all form feed characters (represented by ^L) in GVim on Windows?
:%s/^L//g
will do it. Enter the ^L using ctrl-V ctrl-L
^L
Here's a guide to basic search/replace using Vim.