Asia/Thimphu

L'ora e la data locali correnti nel fuso orario Asia/Thimphu.

UTC+06:00

Loading...
Loading...

Profilo del fuso orario

Fuso orario IANAAsia/Thimphu
Offset+06:00
Ora legaleNon disponibile

Il paese principale che utilizza il fuso orario Asia/Thimphu è 🇧🇹 Bhutan.

Ora solare Disponibile

+06

UTC

Ora legale
L'ora legale non è osservata

Standard di formato di data e ora

La tabella fornisce un confronto affiancato di diversi standard di formato di data e ora. Ogni riga rappresenta uno standard di formato univoco come ATOM, COOKIE, ISO e RFC, tra gli altri.
Formato
Data e ora
ATOM2026-02-13T07:31:45.293+06:00
COOKIEFri, 13 Feb 2026 07:31:45 +0600
HTTPFri, 13 Feb 2026 01:31:45 GMT
ISO2026-02-13T07:31:45.293+06:00
ISO 86012026-02-13T07:31:45.293+06:00
MM-dd-yyyy HH:mm:ss02-13-2026 07:31:45
MongoDB2026-02-13T01:31:45.293Z
MySQL DATETIME2026-02-13 07:31:45
RFC 1036Fri, 13 Feb 26 07:31:45 +0600
RFC 1123Fri, 13 Feb 2026 07:31:45 +0600
RFC 2822Fri, 13 Feb 2026 07:31:45 +0600
RFC 33392026-02-13T07:31:45+0600
RFC 7231Fri, 13 Feb 2026 07:31:45 GMT+6
RFC 822Fri, 13 Feb 26 07:31:45 +0600
RFC 850Friday, 13-Feb-26 07:31:45 GMT+6
RSSFri, 13 Feb 2026 07:31:45 +0600
SQL2026-02-13 07:31:45.293 +06:00
SQL Time07:31:45.293 +06:00
UTC2026-02-13T01:31:45.293Z
Unix Epoch1770946305
W3C2026-02-13T07:31:45+06:00
dd-MM-yyyy HH:mm:ss13-02-2026 07:31:45
yyyy-dd-MM HH:mm:ss2026-13-02 07:31:45
yyyy-dd-MM hh:mm:ss a2026-13-02 07:31:45 AM

Fusi orari correlati

Una tabella con un elenco di fusi orari che hanno lo stesso offset. Include nome e abbreviazioni del fuso orario.

Ci sono 10 fusi orari nella tabella.
Fuso orario IANA
Nome offset
Abbr
Asia/BishkekOra del KirghizistanGMT+6
Asia/DaccaOra standard del BangladeshGMT+6
Asia/DhakaOra standard del BangladeshGMT+6
Asia/KashgarGMT+06:00GMT+6
Asia/OmskOra standard di OmskGMT+6
Asia/ThimbuOra del BhutanGMT+6
Asia/ThimphuOra del BhutanGMT+6
Asia/UrumqiGMT+06:00GMT+6
Etc/GMT-6GMT+06:00GMT+6
Indian/ChagosOra dell’Oceano IndianoGMT+6

Per sviluppatori

php


<?php

// Solution 1
// Set the default time zone
date_default_timezone_set('Asia/Thimphu');

// Solution 2
// Use this to get the current date and time in the specified time zone.
$timezone = new DateTimeZone('Asia/Thimphu');
// 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("Asia/Thimphu")
# 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: "Asia/Thimphu"});
/* 
* Print the current date and time
*/
console.log(currentTime); // 1/1/2023, 12:00:00 AM