Europe/San_Marino

The current local time and date in the Europe/San_Marino time zone.

UTC+01:00

Loading...
Loading...

Timezone Profile

Daylight Saving TimeNot available
IANA TimezoneEurope/San_Marino
Offset+01:00

The primary country that uses the time zone Europe/San_Marino is 🇸🇲 San Marino.

Date and Time Format Standards

The table provides a side-by-side comparison of different date and time format standards. Each row represents a unique format standard such as ATOM, COOKIE, ISO, and RFC, among others.
Format
Date and Time
ATOM2026-03-01T15:30:17.909+01:00
COOKIESun, 01 Mar 2026 15:30:17 +0100
HTTPSun, 01 Mar 2026 14:30:17 GMT
ISO2026-03-01T15:30:17.909+01:00
ISO 86012026-03-01T15:30:17.909+01:00
MM-dd-yyyy HH:mm:ss03-01-2026 15:30:17
MongoDB2026-03-01T14:30:17.909Z
MySQL DATETIME2026-03-01 15:30:17
RFC 1036Sun, 01 Mar 26 15:30:17 +0100
RFC 1123Sun, 01 Mar 2026 15:30:17 +0100
RFC 2822Sun, 01 Mar 2026 15:30:17 +0100
RFC 33392026-03-01T15:30:17+0100
RFC 7231Sun, 01 Mar 2026 15:30:17 GMT+1
RFC 822Sun, 01 Mar 26 15:30:17 +0100
RFC 850Sunday, 01-Mar-26 15:30:17 GMT+1
RSSSun, 01 Mar 2026 15:30:17 +0100
SQL2026-03-01 15:30:17.909 +01:00
SQL Time15:30:17.909 +01:00
UTC2026-03-01T14:30:17.909Z
Unix Epoch1772375417
W3C2026-03-01T15:30:17+01:00
dd-MM-yyyy HH:mm:ss01-03-2026 15:30:17
yyyy-dd-MM HH:mm:ss2026-01-03 15:30:17
yyyy-dd-MM hh:mm:ss a2026-01-03 03:30:17 PM

Related Time Zones

A table with a list of time zones that have the same time offset. Including name and time zone abbreviations.

There are 51 time zones in the table.
IANA Timezone
Offset Name
Abbr
Africa/AlgiersCentral European Standard TimeGMT+1
Africa/BanguiWest Africa Standard TimeGMT+1
Africa/BrazzavilleWest Africa Standard TimeGMT+1
Africa/CeutaCentral European Standard TimeGMT+1
Africa/DoualaWest Africa Standard TimeGMT+1
Africa/KinshasaWest Africa Standard TimeGMT+1
Africa/LagosWest Africa Standard TimeGMT+1
Africa/LibrevilleWest Africa Standard TimeGMT+1
Africa/LuandaWest Africa Standard TimeGMT+1
Africa/MalaboWest Africa Standard TimeGMT+1
Africa/NdjamenaWest Africa Standard TimeGMT+1
Africa/NiameyWest Africa Standard TimeGMT+1
Africa/Porto-NovoWest Africa Standard TimeGMT+1
Africa/TunisCentral European Standard TimeGMT+1
Arctic/LongyearbyenCentral European Standard TimeGMT+1
Atlantic/Jan_MayenCentral European Standard TimeGMT+1
CETCentral European Standard TimeGMT+1
Etc/GMT-1GMT+01:00GMT+1
Europe/AmsterdamCentral European Standard TimeGMT+1
Europe/AndorraCentral European Standard TimeGMT+1
Europe/BelgradeCentral European Standard TimeGMT+1
Europe/BerlinCentral European Standard TimeGMT+1
Europe/BratislavaCentral European Standard TimeGMT+1
Europe/BrusselsCentral European Standard TimeGMT+1
Europe/BudapestCentral European Standard TimeGMT+1
Europe/BusingenCentral European Standard TimeGMT+1
Europe/CopenhagenCentral European Standard TimeGMT+1
Europe/GibraltarCentral European Standard TimeGMT+1
Europe/LjubljanaCentral European Standard TimeGMT+1
Europe/LuxembourgCentral European Standard TimeGMT+1
Europe/MadridCentral European Standard TimeGMT+1
Europe/MaltaCentral European Standard TimeGMT+1
Europe/MonacoCentral European Standard TimeGMT+1
Europe/OsloCentral European Standard TimeGMT+1
Europe/ParisCentral European Standard TimeGMT+1
Europe/PodgoricaCentral European Standard TimeGMT+1
Europe/PragueCentral European Standard TimeGMT+1
Europe/RomeCentral European Standard TimeGMT+1
Europe/San_MarinoCentral European Standard TimeGMT+1
Europe/SarajevoCentral European Standard TimeGMT+1
Europe/SkopjeCentral European Standard TimeGMT+1
Europe/StockholmCentral European Standard TimeGMT+1
Europe/TiraneCentral European Standard TimeGMT+1
Europe/VaduzCentral European Standard TimeGMT+1
Europe/VaticanCentral European Standard TimeGMT+1
Europe/ViennaCentral European Standard TimeGMT+1
Europe/WarsawCentral European Standard TimeGMT+1
Europe/ZagrebCentral European Standard TimeGMT+1
Europe/ZurichCentral European Standard TimeGMT+1
METCentral European Standard TimeGMT+1
PolandCentral European Standard TimeGMT+1

For Developers

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('Europe/San_Marino');

// Solution 2
// Use this to get the current date and time in the specified time zone.
$timezone = new DateTimeZone('Europe/San_Marino');
// Create a new DateTime object
$date = new DateTime('now', $timezone);
// Print the current date and time
echo $date->format('Y-m-d H:i:s'); // 2023-01-01 00:00:00

python


# Solution 1
# Set the default time zone
from datetime import datetime
# Import the pytz module
import pytz
  
# Create a timezone object
tz = pytz.timezone("Europe/San_Marino")
# Get the current time
time_now = datetime.now(tz)
# Format the current time
current_time = time_now.strftime("%H:%M:%S")
  
# Print the current time
print("The current time:", current_time) # The current time: 00:00:00

javascript


/* 
* Solution 1
* Set the default time zone
*/
const date = new Date();
/* 
* Use the toLocaleString() method to get the current date and time in the specified time zone.
*/
const currentTime = date.toLocaleString("en-us", {timeZone: "Europe/San_Marino"});
/* 
* Print the current date and time
*/
console.log(currentTime); // 1/1/2023, 12:00:00 AM