You can use the TZR format to get the name of a region. Note this only works if the timestamp uses a named time zone. If it's listed as the offset in hours/minutes, you'll get those:
alter session set time_zone = 'UTC';
select to_char ( current_timestamp, 'TZR TZH:TZM') from dual;
TO_CHAR(CURRENT_TIMESTAMP,'TZRTZH:TZM')
UTC +00:00
alter session set time_zone = '00:00';
select to_char ( current_timestamp, 'TZR TZH:TZM') from dual;
TO_CHAR(CURRENT_TIMESTAMP,'TZRTZH:TZM')
+00:00 +00:00