HASH(0x775090)= from env

/home/bee$ env | grep HASH
HASH(0x775090)=

Im not sure how I got this, but how do i unset/remove this from env?

/home/btidev$ unset HASH(0x775090)
-bash: syntax error near unexpected token `('
/home/btidev$ unset 'HASH(0x775090)'
-bash: unset: `HASH(0x775090)': not a valid identifier
/home/btidev$ unset HASH\(0x775090\)
-bash: unset: `HASH(0x775090)': not a valid identifier

You've tried all of the sensible things.
Does it appear everytime you login? If not logout, then login.

If not then it has to be coming from buggy /etc/profile code or the .bashrc in your directory.

when unset from tcsh, it works good. i've yet to track down how this entry got into my env.

Thanks