Match Details
Fixture: (10) Frances Tiafoe vs (WC) Rinky Hijikata
Tournament: US Open 2023
Date: Sunday, September 3
Round: Fourth Round (Round of 16)
Venue: New York, USA
Category: Grand Slam
Surface: Hardcourt
Prize money: $65,000,000
Live telecast:- USA: ESPN | UK: Sky Sports | Australia: Nine Network | Canada: TSN | India & South Asia: Sony Sports Network
Frances Tiafoe vs Rinky Hijikata preview
Tenth seed Frances Tiafoe takes on Australian wildcard Rinky Hijikata as a place in the US Open quarterfinals beckons.
World No. 10 Tiafoe faced a tough test against 22nd seed Adrian Mannarino in the third round, dropping the first set 6-4. The 2022 semifinalist, though, took control of proceedings by taking the next two sets for the loss of just five games.
A competitive and erratic fourth set from both players featured four breaks of serve before Tiafoe won the tiebreak to close out victory in six minutes shy of three hours.
After missing his first six break points, he finished strongly, firing 15 aces. With his 19th straight win against a left-hander (since losing to Liam Broady, 2021 Eastbourne), Tiafoe is into the fourth round in New York for the fourth straight year.
Having beaten Learner Tien and Sebastian Ofner in the first two rounds, the American is now 36-14 on the season and 17-8 at Flushing Meadows.
Meanwhile, the 110th-ranked Hijikata continued his dream run this week with a tough win over China's Zhizhen Zhang. The 22-year-old took control of the match with two 6-3 sets before Zhang reduced arrears by taking the third set 6-4.
Hijikata, though, soon assumed control of proceedings, producing another 6-3 set to improve his win-loss record to 10-7 in 2023, blasting 54 winners along the way. He's into the second week at a Major for the first time, having won his first Grand Slam match (Australian Open) only this year.
Earlier this week, the Australian had beaten Pavel Kotov and Marton Fucsovics to reach the third round.
Frances Tiafoe vs Rinky Hijikata head-to-head
The two players haven't met before, so their head-to-head record stands at 0-0.
Frances Tiafoe vs Rinky Hijikata odds
Player | Moneyline | Handicap Bets | Total Games (over/under) |
Frances Tiafoe | -750 | -1.5 (-350) | Over 34.5 (-115) |
Rinky Hijikata | +400 | +1.5 (+225) | Under 34.5 (-120) |
All odds are sourced from BETMGM.
Frances Tiafoe vs Rinky Hijikata prediction
Both Tiafoe and Hijikata are quintessential baseliners, but the similarities in their game styles end there.
Tiafoe is one of the biggest servers and hardest hitters of the ball, and is blessed with elite athleticism. Hijikata has similar weapons, but consistency hasn't been his forte.
Tiafoe also takes the edge because of his superior experience and pedigree, especially at Grand Slams, where he has a 38-29 record. Hijikata, meanwhile, is only 4-2, with three of those wins coming this week. Considering the same, expect Tiafoe to take a hard-fought win.
Pick: Tiafoe to win in four sets.
Quick Links
More from Sportskeeda
" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1652363, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1652363); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1652363) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1652363) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKyVo7uqv46uqmanoJq7bn6Pa2pmnqKWu6Sx0maropmWpLJuwtJmqaKmm656qbXJoqKarJFivbOx1aKcsGWYmq6ledOoZKGdkZl6sb7EnaCcrJmku267w52qZqiZmLg%3D