Set Datetime in UTC+0 timezone directly from UI

System Information
  • Strapi Version: v4.10.6
  • Operating System: Run from Docker Compose on Ubuntus server
  • Database: Postgres
  • Node Version: v16.20.0

This is somewhat similar topic.

On my Strapi UI, I set a DateTime (with hours) field. I understand that after receiving the time from my browser, Strapi server will convert to UTC+0 and store in the database.
For example, I set on UI the time “6/1/2023, 00:00:00”. When I call the API, it returns “2023-05-31T17:00:00.000Z”.
I understand this is the correct implementation?

However, in my use case, I want to set the time directly in the UTC+0 timezone from my Strapi UI. For example, I set “6/1/2023, 00:00:00” and the Strapi stores directly and returns “2023-06-07T00:00:00Z”.
Is it possible?

Thank you.