Cutting characters in a variable

I have a variable var which contains "ABCDEFDH"
Now I have to remove the first 4 characters that is "ABCD"
so my variable should contain only "DEFH"
plzz tell me how to do that .
i am using bash shell

Homework ?..

anyway , something like this :

echo "ABCDEFDH" | cut -c5-8