Unix Timestamp -370908000

    seconds · 68 years ago

    ⚡ Quick Answer

    -370908000 = Apr 1, 1958, 02:00:00 AM UTC

    ISO 8601: 1958-04-01T02:00:00.000Z

    Negative timestamp — represents a date before January 1, 1970 UTC.

    Output Formats

    ISO 8601

    1958-04-01T02:00:00.000Z

    RFC 2822

    Tue, 01 Apr 1958 02:00:00 GMT

    Human Readable

    Tuesday, April 1, 1958 at 02:00:00 AM UTC

    Unix Seconds

    -370908000

    Unix Milliseconds

    -370908000000

    Day of Week

    Tuesday

    Advertisement

    Timezone Breakdown

    UTC

    Apr 1, 1958, 02:00:00 AM UTC

    US Eastern

    Mar 31, 1958, 09:00:00 PM GMT-5

    US Pacific

    Mar 31, 1958, 06:00:00 PM GMT-8

    UK London

    Apr 1, 1958, 02:00:00 AM GMT+0

    Japan Tokyo

    Apr 1, 1958, 11:00:00 AM GMT+9

    Australia Sydney

    Apr 1, 1958, 12:00:00 PM GMT+10

    Frequently Asked Questions

    What date is Unix timestamp -370908000?

    Unix timestamp -370908000 represents Tuesday, April 1, 1958 at 02:00:00 AM UTC. This is 68 years ago from the current time.

    Is -370908000 in seconds or milliseconds?

    -370908000 has 9 digits, which means it is in seconds. Multiply by 1,000 to get milliseconds: -370908000000.

    How do I convert -370908000 in JavaScript?

    // Normalized to Unix seconds: -370908000
    const tsSec = -370908000;
    new Date(tsSec * 1000).toISOString();
    // "1958-04-01T02:00:00.000Z"

    How do I convert -370908000 in Python?

    import datetime
    ts = -370908000
    dt = datetime.datetime.fromtimestamp(
        ts, tz=datetime.timezone.utc)
    print(dt.isoformat())
    # "1958-04-01T02:00:00.000Z"

    What is the Unix timestamp for right now?

    Use our live timestamp converter to get the current Unix timestamp. In JavaScript: Math.floor(Date.now() / 1000). In Python: int(time.time()). In bash: date +%s.

    Need to convert a different timestamp?

    Our full converter supports seconds, milliseconds, microseconds, 25+ timezones, and auto-detection.

    Open Full Converter →
    Advertisement

    Related Guides & Tutorials

    // developers also read