You can use zdump
:
NAME
zdump - timezone dumper
SYNOPSIS
zdump [ --version ] [ --help ] [ -v ] [ -c [loyear,]hiyear ] [ zonename ... ]
DESCRIPTION
Zdump prints the current time in each zonename named on the command line.
Example:
zdump -v -c 2023,2025 "Europe/Berlin"
You may reffer https://man7.org/linux/man-pages/man8/zdump.8.html
And to be able to print even in better format, easier to use inside codes and getting the system time zone dynamically, you can use the command (feel free to update as per your requirement).
zdump -v -c 2023,2025 "$(timedatectl | grep 'Time zone' | awk -F ': ' '{print $2}' | awk -F ' ' '{print $1}')" | grep isdst | awk '{print $9","$10","$11","$12","$13","$14","$15}'