special character

Hi,

I am trying to unload file from a database. Which contains few lines with the character below. Rest of the data was unloaded appropriately.


a) What does this below character means?
b) How can i remove it,
I already have

sed '/^$/d'

c) Will this effect the file by any means (If I am guessing properly, this is the eof notation)

Thanks for help

I tried to edit the post and the character went away.

here is the character


There is still no character in your post. Please run the character through od, hexdump or other character converter and post it in hex or octal format.

0000000  \f  \n  \f  \n  \f  \n  \f  \n  \f  \n  \f  \n  \f  \n  \f  \n
0000020  \f  \n  \f  \n
0000024

I got the following with

od -c

The below code isn't removing it, or may be leaving out the newline characters

tr -d "\f" 

The below sed statement is deleting the complete data

sed 's[ \t]*\f[ \t]*//g' | sed '/^$/d'

That works for me. try:

tr -d "\014"