Deleting first four characters from all Post Titles

You can use ‘the_title’ filter (Codex link)

add_filter( 'the_title', 'lose_four_chars');

function lose_four_chars($title) {
    if ( is_single()) {
        return substr($title, 4);
    } else {
        return $title;
    }
}