Shinjuku Prince Hotel - Official website (2024)

Table of Contents
Experiences Japanese-Style Afternoon Tea RESTAURANTS SPECIAL OFFER Teppanyaki course Sustainability Steps Breakfast Chef’s Recommendation Hotel Image Movie Latest News Teppanyaki course Sustainability Steps Guest Room Renewal About our self check-in service Restaurants Japanese Dining and Bar FUGA Buffet Dining Prince Marché Guest Rooms and Suites Facilities Bell Desk (Tourist Information Center) Guest Lounge Foreign Currency Exchange PC rental (pay) Notice of the Windowpanes Cleaning Notice of repair work in Guest Room Notice of an elevator security system Notice Regarding Turning All Guest Rooms into Non-Smoking Rooms About free Internet service by wireless LAN (Wi-Fi) Enjoy the Shinjuku Prince Hotel Original Movie Japanese style dining & bar Please enjoy the image movie of FUGA Notice of the Windowpanes Cleaning Notice of repair work in Guest Room Notice of an elevator security system Notice Regarding Turning All Guest Rooms into Non-Smoking Rooms About free Internet service by wireless LAN (Wi-Fi) Enjoy the Shinjuku Prince Hotel Original Movie Notice of the Windowpanes Cleaning Notice of repair work in Guest Room Notice of an elevator security system Notice Regarding Turning All Guest Rooms into Non-Smoking Rooms About free Internet service by wireless LAN (Wi-Fi) Japanese style dining & bar Please enjoy the image movie of FUGA Where we are Nearby Attractions Kagurazaka  Warner Bros. Studio Tour Tokyo Hanazono Shinto Shrine Shinjuku Juniso Kumano Shrine Bic Camera Shinjuku West Store Keio Department Store Shinjuku Don Quijote Shinjuku Kabukicho Some no Sato OCHIAI TOKYO MYSTERY CIRCUS Tokyo Opera City TOHO Cinemas Shinjuku References
}} * * 321333: The Prince Gallery Tokyo Kioicho. * 321172: Tokyo Prince Hotel. */ var hotel_check_in_min_date_data = { 321537: {'check_in_min_date': null, 'min_los': '1', 'check_in_offset': '14'}, 322033: {'check_in_min_date': '2022-04-12', 'min_los': '1', 'check_in_offset': '0'}, } var hdnHotelID = jQuery('#hdnHotelID').val(); if (hdnHotelID in hotel_check_in_min_date_data) { check_in_min_date = hotel_check_in_min_date_data[hdnHotelID]['check_in_min_date']; min_los = hotel_check_in_min_date_data[hdnHotelID]['min_los']; check_in_offset = hotel_check_in_min_date_data[hdnHotelID]['check_in_offset']; } if (null != check_in_min_date) { check_in_min_date_parts = check_in_min_date.split('-'); default_check_in_min_date = new Date(check_in_min_date_parts[0], (check_in_min_date_parts[1] - 1), check_in_min_date_parts[2]); default_check_out_min_date = new Date( check_in_min_date_parts[0], (check_in_min_date_parts[1] - 1), (parseInt(check_in_min_date_parts[2]) + 1) ); } if (null != check_in_offset) { default_check_in_min_date = new Date(default_check_in_min_date); default_check_in_min_date.setDate(default_check_in_min_date.getDate() + parseInt(check_in_offset)); } else { default_check_in_min_date = new Date(default_check_in_min_date); default_check_in_min_date.setDate(default_check_in_min_date.getDate() + 0); } // If check-in date including offset, is past now. then initial default check-in min. date will be applied. default_check_in_min_date_sys_format = default_check_in_min_date.getFullYear() + '-' + ("0" + (default_check_in_min_date.getMonth() + 1)).slice(-2) + '-' + ("0" + default_check_in_min_date.getDate()).slice(-2); current_date = "2024-11-26"; if (default_check_in_min_date_sys_format < current_date) { default_check_in_min_date = today_date; } if (null != min_los) { default_check_out_min_date = new Date(default_check_in_min_date); default_check_out_min_date.setDate(default_check_out_min_date.getDate() + parseInt(min_los)); } else { default_check_out_min_date = new Date(default_check_in_min_date); default_check_out_min_date.setDate(default_check_out_min_date.getDate() + 1); } console.log(default_check_out_min_date);jQuery('#datepickerchechinT').datepicker('setDate', default_check_in_min_date); // jQuery('#datepickerchechinT').datepicker('option', 'minDate', default_check_in_min_date); jQuery('#datepickerchechoutT').datepicker('setDate', default_check_out_min_date); // jQuery('#datepickerchechoutT').datepicker('option', 'minDate', default_check_out_min_date); } jQuery(function($) { var sd = new Date(); sd.setDate(sd.getDate() + 1); var currentDate = new Date(); currentDate.setDate(currentDate.getDate()); var today = new Date(); var dd = today.getDate(); var mm = today.getMonth() + 1; var yyyy = today.getFullYear(); var months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; document.getElementById("datepickerchechinT").value = dd + ' ' + months[today.getMonth()] + ' ' + yyyy; document.getElementById("datepickerchechin").value = dd + '/' + mm + '/' + yyyy; var tomorrow = new Date(); var dd = tomorrow.getDate() + 1; var mm = tomorrow.getMonth() + 1; var yyyy = today.getFullYear(); // document.getElementById("datepickerchechoutT").value = dd + ' ' + months[tomorrow.getMonth()] + ' ' + yyyy; // document.getElementById("datepickerchechout").value = dd + '/' + mm + '/' + yyyy; $('#datepickerchechinT').datepicker({ onSelect: function(dateStr) { var d = $.datepicker.parseDate('d M yy', dateStr); var minAfterSelect = new Date(d.getTime()); minAfterSelect.setDate(minAfterSelect.getDate() + 1); d.setDate(d.getDate() + 1); // Add three days $('#datepickerchechoutT').datepicker('option', 'minDate', minAfterSelect); $('#datepickerchechoutT').datepicker('setDate', d); setTimeout(function() { $("#datepickerchechoutT").datepicker('show'); }, 16); }, altField: '#datepickerchechin', altFormat: 'yy-mm-dd', dateFormat: 'dd M yy', buttonText: 'Select Check In Date', buttonImage: 'ASSETS_PATH/images/Calendaricon.png', //minDate: 0, minDate: new Date(), maxDate: '+12M', beforeShow: function(input, inst) { var calendar = inst.dpDiv; if ($(window).width() >= 800) { setTimeout(function() { calendar.position({ my: 'left bottom', at: 'left top', collision: 'none', of: input }); }, 1); } else { setTimeout(function() { calendar.position({ my: 'left top', at: 'left bottom', collision: 'none', of: input }); }, 1); } } }); $('#datepickerchechoutT').datepicker({ altField: '#datepickerchechout', altFormat: 'yy-mm-dd', dateFormat: 'dd M yy', buttonText: 'Select Check Out Date', buttonImage: '/images/Calendaricon.png', //minDate: 0, minDate: new Date(), maxDate: '+12M', beforeShow: function(input, inst) { var calendar = inst.dpDiv; if ($(window).width() >= 800) { setTimeout(function() { calendar.position({ my: 'left bottom', at: 'left top', collision: 'none', of: input }); }, 1); } else { setTimeout(function() { calendar.position({ my: 'right top', at: 'right bottom', collision: 'none', of: input }); }, 1); } } });// Set default calendar minDate. set_calendar_min_date(); $(".menu_cancel_link > li > a").each(function() { $(this).attr('target', '_blank'); }); }); set_calendar_min_date(); jQuery('#region_hotel').change(function() { var region = $(this).val(); var pos = region.search("_") //alert(pos); if (pos == -1) { $('#BookingEnginePromoCodeField').hide(); } else { $('#BookingEnginePromoCodeField').show(); } }); jQuery("#searchsubmit_widget").click(function() { var startDate = $('#datepickerchechin').val(); var endDate = $('#datepickerchechout').val(); if (startDate == "") { alert("Check In date should not be blank. "); return false; } if (startDate == "") { alert("Check Out date should not be blank. "); return false; } });jQuery( document ).ready(function() {set_calendar_min_date();});function includes_ie11(container, value) { var returnValue = false; var pos = container.indexOf(value); if (pos >= 0) { returnValue = true; } return returnValue;}function submitBookingForm(){ document.getElementById("err_msg").style.display="none"; var action = "https://bookings.princehotels.com/en/reservation/hoteldetails/"; var hdnHotelID = jQuery('#hdnHotelID').val(); if(hdnHotelID){ if(includes_ie11(hdnHotelID,"_")){ var action = "https://bookings.princehotels.com/en/reservation/hoteldetails/"; }else{ var action = "https://bookings.princehotels.com/en/reservation/roomdetails/"; } document.getElementById("reservation_search").action = action; // alert(' submit '+document.getElementById("reservation_search").action); return true; } else{ document.getElementById("err_msg").style.display="block"; return false; }}

|

Manage Booking (made before 25th Apr 2024) Manage Booking (made before 25th Apr 2024) Manage Booking (made before 25th Apr 2024) Manage Booking (made before 25th Apr 2024)

Perfectly Placed in Kabuki-cho

Shinjuku Prince Hotel, with its bold, stylish brickwork exterior, is located in Tokyo’s Kabuki-cho entertainment district. This multifaceted hotel features 571 guest rooms on the 10th through 24st floors, as well as the Seibu Shinjuku PePe shopping center from the second basement floor through to the 8th floor, where you’ll find shops stocked with daily necessities, fashion boutiques, and more. Seibu-Shinjuku Station is located on the second floor, while Shinjuku stations for JR rail, the Tokyo Metro, and private rail are all a mere five minutes’ walk away. Additionally, areas such as Ginza, Marunouchi, and Kasumigaseki are easily accessible, within 20 minutes’ reach of the hotel.

About us

Experiences

Experience

Japanese-Style Afternoon Tea

View Full Details

Experience

RESTAURANTS SPECIAL OFFER

View Full Details

Experience

Teppanyaki course

View Full Details

Experience

Sustainability Steps

View Full Details

Experience

Breakfast Chef’s Recommendation

View Full Details

Experience

Hotel Image Movie

View Full Details

Shinjuku Prince Hotel - Official website (10)

Latest News

Teppanyaki course

Sustainability Steps

Guest Room Renewal

About our self check-in service

View All News

Restaurants

Japanese Dining and Bar FUGA

Buffet Dining Prince Marché

Modern Comforts in a Modern City

Guest Rooms and Suites

Experience pure bliss as you relax in our functional yet comfortably appointed rooms inspired by the concept of ‘positive modern design’.

View All Rooms

Facilities

Bell Desk (Tourist Information Center)

Guest Lounge

Foreign Currency Exchange

PC rental (pay)

  • Notice
  • List
  • Hotel
  • Important Notice
  • Notice of the Windowpanes Cleaning

    2024/06/19 Hotel Important Notice

  • Notice of repair work in Guest Room

    2024/04/08 Hotel Important Notice

  • Notice of an elevator security system

    2023/02/08 Hotel Important Notice

  • Notice Regarding Turning All Guest Rooms into Non-Smoking Rooms

    2020/03/20 Hotel Important Notice

  • About free Internet service by wireless LAN (Wi-Fi)

    2019/07/02 Hotel

  • Shinjuku Prince Hotel - Official website (38)
  • Notice of the Windowpanes Cleaning

    2024/06/19 Hotel Important Notice

  • Notice of repair work in Guest Room

    2024/04/08 Hotel Important Notice

  • Notice of an elevator security system

    2023/02/08 Hotel Important Notice

  • Notice Regarding Turning All Guest Rooms into Non-Smoking Rooms

    2020/03/20 Hotel Important Notice

Where we are

Nearby Attractions

Kagurazaka

Welcome to Kagurazaka. This hidden gem of a neighborhood brims with the charm of old Edo. Discover a different side of Shinjuku!Located near the site of the former Edo Castle, established by the …

Find out more

 Warner Bros. Studio Tour Tokyo

Warner Bros. Studio Tour Tokyo – The Making of Harry Potter invites fans to step into iconic sets such as the Great Hall, Diagon Alley and the Hogwarts Express on Platform 9 ¾. Enjoy lots of …

Find out more

Hanazono Shinto Shrine

This shrine was important as the general guardian shrine for Shinjuku from even before the start of the Edo Shogunate under Tokugawa Ieyasu (1603). It is …

Find out more

Shinjuku Juniso Kumano Shrine

The Shinjuku Juniso Kumano Shrine is a solemn and historic shrine surrounded by lush greenery in the heart of the city.Address: 2-11-2 Nishi-shinjuku, Shinjuku-ku, …

Find out more

Bic Camera Shinjuku West Store

Located in Shinjuku Nishiguchi HALC right in front of the west exit of Shinjuku Station, the store offers a wide range of products including cameras, home appliances, TVs, computers, and audio …

Find out more

Keio Department Store Shinjuku

This department store is located just one minutes’ walk from the west exit of Shinjuku Station. In addition to various product fairs such as the Ekiben & Japanese Local Gourmet Fair, which …

Find out more

Don Quijote Shinjuku Kabukicho

This store is located just three minutes’ walk from the Shinjuku Prince Hotel and five minutes’ walk from the east exit of Shinjuku Station!As the main Shinjuku store, it is located along …

Find out more

Some no Sato OCHIAI

In order to promote understanding of traditional Japanese crafts to people from various walks of life, Some no Sato OCHIAI offers a quick and easy authentic dyeing experience for individuals, groups, …

Find out more

TOKYO MYSTERY CIRCUS

Tokyo Mystery Circus is a theme park that offers the most realistic storytelling experience in Kabukicho, Shinjuku. Various interactive games and events, such as the Real Escape Game where you escape …

Find out more

Tokyo Opera City

Tokyo Opera City is a large-scale complex comprising offices, retail stores, and cultural facilities. As a spot where you can enjoy a variety of shopping and dining options, art works, performing …

Find out more

TOHO Cinemas Shinjuku

This movie theater is located in the Shinjuku Toho Building, a complex built on the site of the former Shinjuku Koma Theater. Befitting of one of the world’s leading entertainment districts, it …

Find out more

This error message is only visible to WordPress admins

Error: No connected account.

Please go to the Instagram Feed settings page to connect an account.

We use our own and third party cookies to give you the best possible experience. By using this site, you agree with our Cookie PolicyAccept

Shinjuku Prince Hotel - Official website (2024)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Ms. Lucile Johns

Last Updated:

Views: 6118

Rating: 4 / 5 (61 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Ms. Lucile Johns

Birthday: 1999-11-16

Address: Suite 237 56046 Walsh Coves, West Enid, VT 46557

Phone: +59115435987187

Job: Education Supervisor

Hobby: Genealogy, Stone skipping, Skydiving, Nordic skating, Couponing, Coloring, Gardening

Introduction: My name is Ms. Lucile Johns, I am a successful, friendly, friendly, homely, adventurous, handsome, delightful person who loves writing and wants to share my knowledge and understanding with you.