Asia/Bishkek

Поточний час і дата зараз у часовому поясі Asia/Bishkek.

UTC+06:00

Loading...
Loading...

Профіль часового поясу

Зсув+06:00
Літній часНе доступно
Часовий пояс IANAAsia/Bishkek

Основною країною, яка використовує часовий пояс Asia/Bishkek, є 🇰🇬 Киргизстан.

Стандартний час Доступно

+06

UTC

Літній час
Літній час не застосовується

Стандарти форматування дати та часу

Таблиця надає порівняння різних стандартів форматування дати та часу поруч. Кожен рядок представляє унікальний стандарт формату, такий як ATOM, COOKIE, ISO та RFC серед інших.
Формат
Дата та час
ATOM2025-06-26T19:40:18.865+06:00
COOKIEThu, 26 Jun 2025 19:40:18 +0600
HTTPThu, 26 Jun 2025 13:40:18 GMT
ISO2025-06-26T19:40:18.865+06:00
ISO 86012025-06-26T19:40:18.865+06:00
MM-dd-yyyy HH:mm:ss06-26-2025 19:40:18
MongoDB2025-06-26T13:40:18.865Z
MySQL DATETIME2025-06-26 19:40:18
RFC 1036Thu, 26 Jun 25 19:40:18 +0600
RFC 1123Thu, 26 Jun 2025 19:40:18 +0600
RFC 2822Thu, 26 Jun 2025 19:40:18 +0600
RFC 33392025-06-26T19:40:18+0600
RFC 7231Thu, 26 Jun 2025 19:40:18 GMT+6
RFC 822Thu, 26 Jun 25 19:40:18 +0600
RFC 850Thursday, 26-Jun-25 19:40:18 GMT+6
RSSThu, 26 Jun 2025 19:40:18 +0600
SQL2025-06-26 19:40:18.865 +06:00
SQL Time19:40:18.865 +06:00
UTC2025-06-26T13:40:18.865Z
Unix Epoch1750945218
W3C2025-06-26T19:40:18+06:00
dd-MM-yyyy HH:mm:ss26-06-2025 19:40:18
yyyy-dd-MM HH:mm:ss2025-26-06 19:40:18
yyyy-dd-MM hh:mm:ss a2025-26-06 07:40:18 PM

Пов'язані часові пояси

Таблиця зі списком часових поясів, які мають однаковий часовий зсув. Включаючи назву та абревіатури часових поясів.

В таблиці 10 часових поясів.
Часовий пояс IANA
Назва зсуву
Абр
Asia/Bishkekза часом у КиргизстаніGMT+6
Asia/Daccaза стандартним часом у БангладешGMT+6
Asia/Dhakaза стандартним часом у БангладешGMT+6
Asia/KashgarGMT+06:00GMT+6
Asia/Omskза омським стандартним часомGMT+6
Asia/Thimbuза часом у БутаніGMT+6
Asia/Thimphuза часом у БутаніGMT+6
Asia/UrumqiGMT+06:00GMT+6
Etc/GMT-6GMT+06:00GMT+6
Indian/Chagosза часом в Індійському ОкеаніGMT+6

Для розробників

php


<?php

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

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