How to access specific product id on other pages/posts?

Thanks the Tony Djukic coment, here is a working code example:

<?PHP
    $product_id = 92; /*hard code the product id */
    $manufacture_url = get_field( "manufacture_url", $product_id, true );
    
    echo 'some html' + $manufacture_url + 'some html'
?>

The product ID can be found in the product URL on editing mode.

I used xyz PHP plugin the create shortcode and manually forward the product id variable in the shortcode itself. So I can maintain 1 short code for all posts.