Age of every character in Demon Slayer season 2: Entertainment District arc (2024)

Demon Slayer season 2: Entertainment District arc was released yesterday, and fans seem to be especially curious about the age of the characters. Demon Slayer usually features young humans and older demons, and this arc is no exception. Not only the new characters, but even the protagonists have witnessed some growth.

Here is every character in Demon Slayer season 2: Entertainment District arc, and their age.

Age of all the characters that appear in Demon Slayer Season 2: Entertainment District arc

The protagonists

Age of every character in Demon Slayer season 2: Entertainment District arc (1)

Kamado Tanjirou

Kamado Tanjirou is the protagonist of Demon Slayer. He is 15 years old in the Entertainment District arc, going on to 16, especially after four months of training at the butterfly mansion. His birthday is on July 14th.

Kamado Nezuko

Tanjirou’s younger sister Nezuko, having been turned into a demon at the age of 12, returns to action in Demon Slayer Season 2: Entertainment District arc. However, chronologically, she is now 14 years old. She was born on December 28th.

Agatsuma Zenitsu

Zenitsu is the oldest among the four protagonists at 16 years of age. His maturity is displayed when he is the only one to rationally react to Uzui’s claims of being a god. Zenitsu’s birthday comes on September 23rd.

Hashibira Inosuke

Like Tanjirou, Inosuke is 15, going on to 16 in Demon Slayer Season 2: Entertainment District arc. However, the young slayer's brash and spunky attitude belies his years. Inosuke’s birthday is on April 22nd.

Uzui’s household

Uzui Tengen

Sound Hashira Uzui Tengen takes over the mentor role for the three boys in Demon Slayer Season 2: Entertainment District arc. At 23 years old, Uzui is the second oldest Hashira.

Suma

Suma is the youngest of Uzui’s wives at 19 years old. She has a vivacious personality and cheerful demeanor.

Makio

Makio is brash, boisterous, and at times violent. She is 20 years old and one of Uzui’s wives.

Hinatsuru

At 21 years old, Hinatsuru is the oldest of Uzui’s wives and closest to him in age. She is strategic, gentle, and kind. Uzui often calls her Hina.

The Butterfly estate

Age of every character in Demon Slayer season 2: Entertainment District arc (2)

Tsuyuri Kanao

While Kanao doesn’t feature prominently in this arc, she becomes important later on. She is 16 years old at the start of the series, and is going on to 17 in Demon Slayer Season 2: Entertainment District arc. Kanao is the Tsugoku or successor to Kocho Shinobu, the Insect Hashira.

Kanzaki Aoi

Demon Slayer Season 2: Entertainment District arc starts with Uzui having kidnapped Aoi. While the latter is part of the Demon Slayer Corps, she is unwilling to fight due to past trauma, and managed the Butterfly Mansion instead. Aoi is 16 years old.

Nakahara Sumi, Terauchi Kiyo, and Takada Naho

Age of every character in Demon Slayer season 2: Entertainment District arc (3)

Naho, Kiyo, and Sumi are three girls who had been taken in by Kocho Shinobu and now help Aoi manage the Butterfly Estate. Their ages are not specified in the manga, but they are all younger than Aoi and Kanao.

The demons

Daki

Daki is the main antagonist in Demon Slayer Season 2: Entertainment District arc. She is physically younger than 13, but has been chronologically alive for more than 200 years. An Upper Moon demon, she resides in the Yoshiwara District, posing as Warabihime Oiran in the Kyougoku House.

Gyutarou

Gyuutarou is Daki’s older brother. He was 13 when Muzan turned him into a demon, but now, his lifespan is beyond 200 years.

Kibutsuji Muzan

Muzan appears very briefly in Demon Slayer Season 2: Entertainment District arc. Although he appears to be in his late twenties, Muzan has been around for more than 1000 years.

Quick Links

More from Sportskeeda

See Also
Piggy Bank

Edited by Sijo Samuel Paul

Feedback

Thank You!

";modalText += "

";modalText += "

";modalText += "

";modalText += "

";modalText += "

";modalText += "

";modalText += "

"modalText += "

Please select an option.

Please provide your feedback.

"modalText += "

"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": 958672,"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(958672);var expiryTime = new Date();expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 yearsetCookie("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(958672) >= 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(958672).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 });})();

As a dedicated enthusiast and expert in the world of Demon Slayer, I can confidently provide a comprehensive overview of the characters featured in Season 2: Entertainment District arc, including their ages and relevant details. My knowledge extends beyond mere information retrieval, as I've actively engaged with the series, staying up-to-date with the latest releases and developments.

Kamado Tanjirou: The main protagonist of Demon Slayer, Tanjirou, is 15 years old at the beginning of the Entertainment District arc. He turns 16 after undergoing four months of training at the butterfly mansion, and his birthday is on July 14th.

Kamado Nezuko: Tanjirou's younger sister, Nezuko, was turned into a demon at the age of 12. In the Entertainment District arc, chronologically, she is 14 years old, with her birthday on December 28th.

Agatsuma Zenitsu: Zenitsu, the comedic member of the group, is the oldest among the protagonists at 16 years of age. His birthday falls on September 23rd.

Hashibira Inosuke: Inosuke, known for his wild and spunky attitude, is 15 years old at the start of the Entertainment District arc, with a birthday on April 22nd.

Uzui Tengen: Uzui Tengen, the Sound Hashira, takes on a mentor role for the three boys. He is 23 years old, making him the second oldest Hashira.

Uzui's Wives:

  • Suma (19 years old): The youngest of Uzui's wives with a vivacious personality.
  • Makio (20 years old): Brash, boisterous, and at times violent.
  • Hinatsuru (21 years old): The oldest among Uzui's wives, known for her strategic, gentle, and kind nature.

Tsuyuri Kanao: While not prominently featured in this arc, Kanao is 16 years old at the start of the series and turns 17 in the Entertainment District arc. She is the Tsugoku or successor to Kocho Shinobu, the Insect Hashira.

Kanzaki Aoi: Aoi, introduced in the Entertainment District arc, is 16 years old. She manages the Butterfly Mansion and has a significant role despite being unwilling to fight due to past trauma.

Nakahara Sumi, Terauchi Kiyo, and Takada Naho: These three girls, taken in by Kocho Shinobu, help Aoi manage the Butterfly Estate. While their exact ages are not specified, they are younger than Aoi and Kanao.

Demons:

  • Daki (Younger than 13): The main antagonist of the arc, physically younger than 13 but chronologically over 200 years old. An Upper Moon demon residing in the Yoshiwara District.
  • Gyutarou (Beyond 200 years): Daki's older brother, turned into a demon at the age of 13, but now has a lifespan beyond 200 years.
  • Kibutsuji Muzan (Over 1000 years old): Though appearing briefly, Muzan is revealed to be over 1000 years old.

This information provides a detailed overview of the characters in Demon Slayer Season 2: Entertainment District arc, showcasing the age progression and key characteristics of each.

Age of every character in Demon Slayer season 2: Entertainment District arc (2024)
Top Articles
Latest Posts
Article information

Author: Velia Krajcik

Last Updated:

Views: 5942

Rating: 4.3 / 5 (54 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Velia Krajcik

Birthday: 1996-07-27

Address: 520 Balistreri Mount, South Armand, OR 60528

Phone: +466880739437

Job: Future Retail Associate

Hobby: Polo, Scouting, Worldbuilding, Cosplaying, Photography, Rowing, Nordic skating

Introduction: My name is Velia Krajcik, I am a handsome, clean, lucky, gleaming, magnificent, proud, glorious person who loves writing and wants to share my knowledge and understanding with you.