import java.time.Instant;
import java.time.LocalTime;
import java.time.OffsetDateTime;
import java.time.OffsetTime;
import java.time.ZoneOffset;

public class Main {
	public static void main(String[] args) {
		Instant instant = Instant.ofEpochMilli(1_376_824_500_000L);
		OffsetDateTime odtUtc = instant.atOffset(ZoneOffset.UTC);
		LocalTime time = odtUtc.toLocalTime();
		System.out.println(time);

		// If you want the time with timezone offset
		OffsetTime ot = odtUtc.toOffsetTime();
		System.out.println(ot);
	}
}