We use the date filter in Liquid to format dates and/or timestamps. You can find more details in the official docs. I wanted the date in the format "August 02, 2026" so I used this format string:
{{ entry.date | date: '%B %d, %Y', 'Asia/Kolkata' }}
The date filter defaults to the timezone that the host machine is running on. It does not automatically follow the timezone offset mentioned in the incoming timestamp. So we need to specify the particular timezone in which the formatted date/timestamp needs to be computed.