Jeremy Brown funeral attendees wear 'knockout king' t-shirt, leaving the internet outraged

32-year-old Chicago resident Jeremy Brown’s funeral recently sparked controversy as an attendee wore a t-shirt with his picture and “knockout king” written on it. He was shot by a 14-year-old on June 18, 2023, and died from three bullet wounds on his back. The incident took place after Jeremy punched the teen’s mother, Carlisha Hood, at a hot dog stand.

Photos from Jeremy’s funeral started going viral on social media on June 30. YouTuber Nique at Nite uploaded a video where she elaborated on the situation. It was shown that the woman who wore the “knockout king” t-shirt is a family member of Jeremy Brown, who goes by the name Sade Shadoo on Instagram.

Though Sade went private on the app after the backlash. Nique shared the screenshot of her Instagram story and the video Sade posted in response to the online criticism. In the video, Sade glorified that Jeremy Brown was known as the "knockout king" and glamorized his abusive behavior. In the other story, Sade eulogized Jeremy had knocked out hundreds of people before he died.

As expected, Sade, Jeremy Brown, and his family recieved backlash from the online community. One person, @sheryl9568, commented on Nique's YouTube video and wrote that the family member wearing the t-shirt had no class and lacked morals.

Jeremy Brown's funeral attendee's "knockout king" t-shirt sparks online outrage. (Image via YouTube/Nique at Nite)

Netizens react to "knockout king" t-shirt at Jeremy Brown's funeral

The viral photo prompted heated reactions from people on social media. While a funeral is supposed to be an event where friends, family, and community members usually gather to pay their last respects to the deceased, Jeremy Brown’s family chose to remember him as the “knockout king.”

People were furious at the fact that his family was okay with him beating women. Many people in the Black community were ashamed of Jeremy Brown, his family, and their justification and glorification of physical assault. They found the family problematic and said that Carlisha Hood’s 14-year-old son did a good job taking the “demon” out.

Jeremy's funeral attendee's "knockout king" t-shirt sparks online outrage. (Image via YouTube/Nique at Nite)
Jeremy's funeral attendee's "knockout king" t-shirt sparks online outrage. (Image via YouTube/Nique at Nite)
Jeremy's funeral attendee's "knockout king" t-shirt sparks online outrage. (Image via YouTube/Nique at Nite)
Jeremy's funeral attendee's "knockout king" t-shirt sparks online outrage. (Image via YouTube/Nique at Nite)
Jeremy's funeral attendee's "knockout king" t-shirt sparks online outrage. (Image via YouTube/Nique at Nite)
Jeremy's funeral attendee's "knockout king" t-shirt sparks online outrage. (Image via YouTube/Nique at Nite)
Jeremy's funeral attendee's "knockout king" t-shirt sparks online outrage. (Image via YouTube/Nique at Nite)
Jeremy's funeral attendee's "knockout king" t-shirt sparks online outrage. (Image via YouTube/Nique at Nite)

Carlisha Hood and her son walked out free as charges were dropped

Murder charges against Carlisha Hood and her 14-year-old son were dropped after their initial court hearing. A statement was released by the Cook County Prosecutors on June 26, 2023, where it was stated that the decision to drop the charges had been made backed by the emerging evidence.

Irv Miller, a legal analyst, said that any criminal charges, or murder charges in this case, should have never been approved. Miller explained that one has the right to use deadly force to counter-resist another force, which is exactly what happened in Carlisha Hood’s case when her son shot Jeremy Brown to stop him from punching her. He added:

"This goes beyond an injustice. Frankly, it's a miscarriage of justice as to what happened to this woman and her son. It's a situation where either the charges should have been rejected, or at the very minimum they should have been continued for investigation, rather than just, you know, say, 'Okay, murder charge. Send them to court.'"

The attorney at the Cook County State’s press release stated that the attorney’s office has moved to dismiss the murder charges against Hood and her son. It added that based on the evidence, facts, and the law, they could not meet the proof required to prosecute the case.

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": 1569384, "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(1569384); 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(1569384) >= 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(1569384) .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 }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKifpXqkwcutrKudX6OyuL%2BMp6Zmm5yWwLR5y5qapGWdpL%2BiuNJmq6Gho2Kws63ZsmSjnaKaurp5waumsKZdm8KvsdGao2aZpKmyr7DEnqpmr5WWv263zaiapKelqXqstc2gZK1lo522s8CMpZyarpmjtG61za2cq6aVqXqwwdOrmKCdlA%3D%3D