How to find the Product by Id in theme

Hi All,

I am currently working on a theme extension. I have a product ID in the following format: gid://shopify/Product/8789. How can I find this product in Liquid and convert it properly?

Any help would be appreciated!

On which page you need to find the product ID?

Example:-

  1. On Product Page
    You get directly by using {{ product.id }}

  2. On Collection Page
    Here you will get by looping through
    f{% for c in collection.products %}
    {% assign pId = c.id %}
    {{ pId }}
    {% endfor %}