Remove short link tag from particular page

Replace 2 for ID of your page. Insert into your functions.php

if ( is_page(2) ){
   remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 );
}