every Hazbin Hotel/ Helluva Boss Character (2024)

Quiz Lab

Quiz Lab

Television

TV Characters

Type in answers that appear in a list

Type in answers that appear in a list

Classic

By mandalorian420

20m

61 Questions

13 Plays13 Plays

13 Plays

Comments

Give Quiz Kudos

Give Quiz Kudos

-

")$objective.click(() => {window.onClickObjective(reckoningQuestObjective.quest_number, reckoningQuestObjective.objective_number, reckoningQuestObjective.quest_id, reckoningQuestObjective.objective_id, $objective);});if (!window.mweb) {$j('#snark').hide();$objective.insertAfter($j('#gameOverMsg'));} else if (is_flagship_app_view) {$j('#snark').html();$objective.appendTo($j('#snark'));} else {$objective.appendTo($j('#reckoning .stats-wrapper'));}} else if (showSnark) {var snark = getSnark(userPct);var attachSnarkModalListener = false;if (snark !== '') {snark = ""+snark+"";if (!window.mweb) {if (false) {attachSnarkModalListener = true;snark += "";} else {snark += "";}}} else {$j('#snark').hide();}$j('#snark').html(snark);if(attachSnarkModalListener){ $j('#hide-snark-open-confirmation-modal').on('click', function () { var modalArgs = {title: 'Hide These Messages?',message: 'Are you sure you want to hide post-quiz messages?', onYes: function(remodal){ $j.ajax({ type: "GET", url: "/ajax/user_settings.php", data: {s: 0}, success: function(response) { if (response.success) { $j('#snark').hide(); remodal.close(); } else { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }, error: function(response) { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }); } }; SporcleLib.Modal._openConfirmationModal(modalArgs); }); }} else {$j('#snark').hide();}// Update get reckoning with playlist infovar playlistData;if (mweb) {playlistData = typeof window.playlist === 'object' && window.playlist.hasOwnProperty('games') ? window.playlist : null;} else {playlistData = window.Sporcle.gameData.playlist ? window.Sporcle.gameData.playlist.vm.data : null;}if (playlistData) {playlistReckoning(playlistData, userPct, false && !stopwatch);}$j('#playGameBar').addClass('reckoning');$j('#reckonBox').show();if (mweb) {/* mobile games only */$j('#reckoning-numright').html(numRight);$j('#reckoning-time').html(displayTime(timerSecs));if (stopwatch) {$j('#reckoning-time-title').text("Stopwatch");$j('#reckoning-time, #reckoning-score').addClass('timePast');}var checkToOpenFlorinPlayGoalModal = () => {if (userPct == 0) {return;}if (!florinsPlayGoalData) {return;}var openModal = false;if (florinsPlayGoalData.reward_claimable) {openModal = true;} else if (florinsPlayGoalData.curr_streak + 1 == florinsPlayGoalData.goal_days && florinsPlayGoalData.plays_today == 0) {// First play of the day, this should complete their play goalopenModal = true;}if (openModal) { window.SporcleLib.Modal.openFlorinPlayGoalModal({ // Fudge these values to be at the goal, since we haven't necessarily logged this play yet and it might be the 7th curr_streak : florinsPlayGoalData.goal_days, reward_claimable : true, plays_today : florinsPlayGoalData.plays_today + 1, goal_days : florinsPlayGoalData.goal_days, reward_amount : florinsPlayGoalData.reward_amount, })}}if (is_flagship_app_view) {let animations = window.animations;let hapticType = 'success';let completeMsg;let animConfig = {animationData : animations.checkmark,loop : true,playSegments : [[0, 30], [31, 75]]};if (userPct == 1) {animConfig.animationData = animations.perfectScore;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Perfect Score!";} else if (timerSecs == 0) {hapticType = 'error';animConfig.animationData = animations.outOfTime;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Out of Time!";} else if (_spks && !didGiveUp) {hapticType = 'error';animConfig.animationData = animations.bomb;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "You Hit a Mine!";}window.SporcleLib.Modal.openModalFromTpl($j('#post-game-modal-tpl').html(), {show_loading : false,onInit : (modal) => {let $modal = modal.$modal; $modal.attr('id', 'postGameModal'); postGameAnim = lottie.loadAnimation({container : $modal.find('#postGameIcon')[0],animationData : animConfig.animationData,loop : animConfig.loop,autoplay : false});$modal.find('.modal-close').on('click', () => {window.continuePostQuiz();}); $modal.find('#completeMsg').html(completeMsg); $modal.find('#postPct').html(roundPercentScore(userPct));$modal.find('#postCorrect').html($j('#reckoning-score').text());if (snark) {$modal.find('#snark').html(snark);} else {$modal.find('#snark').hide();}setTimeout(() => {postGameAnim.playSegments(animConfig.playSegments, true);// if (hapticType) {// setTimeout(() => {// window.SporcleApp.api.playHaptic(hapticType);// }, 150);// }}, 150);},onClose : () => {checkToOpenFlorinPlayGoalModal();}});} else {checkToOpenFlorinPlayGoalModal();}}$j('#playGameBox').empty().hide();$j('#postGameBox').show();}function toggleshow() {showans = !showans;}function roundPercentScore(pctScore) {return _.round(100 * pctScore);}function updateBadge(userPct) {var earned = false;if (quizBadge && userPct > 0) { if (quizBadge.criteria && quizBadge.criteria.length) { var requiredCount = quizBadge.criteria.length; var earnedCount = 0; //Loop through possible badge criteria to see if we earned them quizBadge.criteria.forEach(function (criterion) { var comparison = parseInt(criterion.compare); if(criterion.name === 'percent'){ if ((comparison === 0 && userPct === parseFloat(criterion.value)) || //'0' means percent needs to equal (comparison === 1 && userPct > parseFloat(criterion.value)) || //'1' means percent needs to be greater than (comparison === -1 && userPct < parseFloat(criterion.value)) //'-1' means percent needs to be less than (at the time of writing, no badge exists like this) ) { earnedCount++; } } else if (criterion.name === 'month'){ var d = new Date(); //getMonth() starts at 0 if((d.getMonth() + 1 == criterion.value && comparison === 0) || (d.getMonth() + 1 > criterion.value && comparison === 1) || (d.getMonth() + 1 < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day'){ var d = new Date(); if((d.getDate() == criterion.value && comparison === 0) || (d.getDate() > criterion.value && comparison === 1) || (d.getDate() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day_of_the_week'){ var d = new Date(); if((d.getDay() == criterion.value && comparison === 0) || (d.getDay() > criterion.value && comparison === 1) || (d.getDay() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'avg_percent' && typeof averageScore !== 'undefined') {var roundedUserPct = _.round(userPct, 2); //matches backend precision in badge trackervar roundedAvgPct = _.round(averageScore, 2);if((roundedUserPct == roundedAvgPct && comparison === 0) || (roundedUserPct > roundedAvgPct && comparison === 1) || (roundedUserPct < roundedAvgPct && comparison === -1) ){ earnedCount++; } }}); earned = earnedCount == requiredCount;} else {earned = true;}} if (earned) {quizBadge.condition_earned = true;quizBadge.achieved_count++; var spliceIndex = null;_(quizBadge.remaining_conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {spliceIndex = index;}});_(quizBadge.conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {condition.earned = true;}});if (spliceIndex !== null) {quizBadge.remaining_conditions.splice(spliceIndex, 1); quizBadge.condition_earned_date = (new Date()).toLocaleDateString(undefined, { year: 'numeric', month: 'long', day: 'numeric' });; }if (quizBadge.remaining_conditions.length === 0 ) {if (quizBadge.badge_earned && quizBadge.levelable) {quizBadge.achieved_count = 0;quizBadge.level++;var currDate = new Date();quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();} else {quizBadge.badge_earned = true;var currDate = new Date();quizBadge.earned_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();if (quizBadge.levelable) {quizBadge.level = 1;quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();quizBadge.achieved_count = 0;}}}if (badgeTooltip) {badgeTooltip.deactivate();}if (badgeTooltipRightRail) {badgeTooltipRightRail.deactivate();}var template = _.template($j('#quiz-badge-template').html());if (window.mweb) {$j('#main-wrapper .quiz-badge').replaceWith($j(template(quizBadge)));} else {quizBadge.tooltip_trigger_id = 'quiz-badge-art';$j('#main-quiz-content .quiz-badge').replaceWith($j(template(quizBadge)));quizBadge.tooltip_trigger_id = 'quiz-badge-art-right-rail';$j('#right-rail .quiz-badge').replaceWith($j(template(quizBadge)));if (!quizBadge.badge_earned) {if (window.setupUnearnedBadgeTooltip) {window.setupUnearnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupUnearnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);} else {var conditionsTemp = _.template($j('#badge-conditions-template').html());var tooltipHtml = $j(conditionsTemp(quizBadge));const badgeTooltipOptions = { //this should match /sporcle-ui/tooltips/functionalTooltipstarget : true,tipJoint : 'bottom middle',showOn : 'mouseover',hideTriggers : ['target','tip'],stemLength : 8,stemBase : 12,hideOn : 'mouseout',removeElementsOnHide : true,background : 'white',borderColor : '#d8d8d8',borderWidth : 1,shadowOffset : [3,3],shadowBlur : 10,showEffect : 'slide',showEffectDuration : 0.1,hideEffectDuration : 0.3,className : 'badge-tooltip',shadowColor : 'rgba(0,0,0,0.25)'};badgeTooltip = new Opentip('#quiz-badge-art', tooltipHtml.html(), badgeTooltipOptions);badgeTooltipRightRail = new Opentip('#quiz-badge-art-right-rail', tooltipHtml.html(), badgeTooltipOptions);}} else {if (window.setupEarnedBadgeTooltip) {window.setupEarnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupEarnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);}}}}}function showHintTooltip(x, y, hint) {$hint = $j('#hintTooltip');if ($hint.length == 0) {$hint = $j('

' +'

' +'

' +'

' +'

' +'

').appendTo($j('body'));}if (hint) {var $afterContainer = $hint.find('.afterContainer');var $after = $hint.find('.after');// Set to max width before resize$afterContainer.css({width: '120px'});$hint.show();// Set tooltip text to hint$after.html(hint);// Get width of tooltip with textvar width = Math.ceil($after[0].offsetWidth) + 1;var leftShift = 0;if (mweb) {// Make sure the tooltip doesn't go off either side of the screenvar leftBound = 51;var rightBound = $j('body').width() - 71;var buf = 11;// Shift based on width of textvar shiftLimit = Math.max(width/2 - 20, 0);if (x < leftBound) {// Too close to left edge of screenleftShift = -shiftLimit;x = Math.max(x, buf);} else if (x > rightBound) {// Too close to right edge of screenleftShift = shiftLimit;x = Math.min(x, $j('body').width() - buf);}}// Set the position of the hint$hint.css({left: x + 'px',top: y + 'px',});// Set outer container size and position$afterContainer.css({width: width + 'px',left: '-' + ((width / 2) + leftShift) + 'px'});} else {$hint.hide();}}function getRandomColor() {var r = Math.round(Math.random() * 255);var g = Math.round(Math.random() * 255);var b = Math.round(Math.random() * 255);return 'rgb(' + r + ',' + g + ',' + b + ')';}function hintTooltipIsDisplayed() {return $j('#hintTooltip').is(':visible');}function getCurrentHintText() {return $j('#hintTooltip .afterContainer .after').text();}async function runStartCode(stopwatch) {if (typeof gamePageIsLoaded != "undefined" && gamePageIsLoaded) {if (window.startTriggered) {return;} else {window.startTriggered = true;}if (typeof stopwatch !== 'undefined') {if (stopwatch) {window.selectTimerSetting('stopwatch');} else {window.selectTimerSetting('timer');}}startGame(1200);callSPHooks('postStart');}}function callSPHooks(name) {if (typeof _spHooks != 'undefined') {var hlen = _spHooks[name].length;for (var i = 0; i < hlen; i++) {_spHooks[name][i]();}}}

0/61

Quiz is untimed. Quiz plays in practice mode will not be counted towards challenge completion or badge progress.

20:00

SpeciesCharacterHint
DemonThe Princess of Hell
Angelangel and former Exorcist
Sinner Demonadult flim star in Hell
Sinner DemonThe Radio Demon
Sinner Demona grumpy gambler and magician
Sinner Demonsmall, cyclops demon
Angel/ Sinner Demona passion for building steampunk machines
Artificial Demon small demon who serve the Royal Family
Artificial Demon small demon who serve the Royal Family
Artificial DemonEgg Demons
Sinner Demonwhite-skinned cyclops
Sinner Demon head anchor of 666 News
Sinner Demonco-anchorman at 666 News
AngelThe First Man
Angellieutenant Exorcist
Seraphim AngelSeraphim
Seraphim AngelSeraphim
Hell Pigdemonic pet pig
Demonsole owner of Rosie's Emporium
Demontaxi driver
Sinner Demonalso known as Sweetheart
SpeciesCharacterHint
Sinner Demonhead of the p*rn studio within V Tower
Demonbackbone of the Vees
Sinner DemonCEO of VoxTek
Demonthe top weapons dealer in Hell
Demonthe oldest Overlord
DemonQueen of Hell
DemonKing of Hell
Keythe key to the Hazbin Hotel
Imp Demonfounder and manager of I.M.P
Imp Demonan assassin at I.M.P
Imp Demonan assassin at I.M.P
Hellhound Demonthe receptionist of I.M.P
DemonGoetic Prince of Hell
DemonChild of the Goetic Prince of Hell
Demonwife of the Goetic Prince of Hell
Imp Demonformer clown at Cash Buckzo's
Animatronicperformed regularly at Loo Loo Land
Succubus Demonfamous popstar
Imp Demona running gag
Imp Demon (hybrid)hired by the Crimson Mafia
Humanworks for D.H.O.R.K.S.
SpeciesCharacterHint
Humanworks for D.H.O.R.K.S.
Demonex-boyfriend of Moxxie and Millie
Demona king of the Ars Goetia
Demona member of the Ars Goetia
DemonSin of Greed
Sinner Demonhired I.M.P to kill a woman
Hellhound Demonbodyguard for a famous pop star
Humanalso known as Bratty Kid
Cherub AngelCherub Angel
Cherub AngelCherub Angel
Cherub AngelCherub Angel
Sinner Demonco-worker of Loopty Goopty
Sinner Demonco-founder of Lyle-Loopty Robotics
Imp Demonmother of Millie
Imp Demonfather of Millie
Imp Demon Millie's younger sister
Imp DemonMoxxie's father
DemonSin of Gluttony
DemonSin of Lust
every Hazbin Hotel/ Helluva Boss Character (2024)

FAQs

Who is the hottest Hazbin Hotel character? ›

onix | Did you know that Vox won the "Hottest Hazbin Hotel character" poll on twitter ? Now you know #vox #hazbinhotel #voxhazbinhotel #voxfanart...

Who is the strongest character in Hazbin Hotel? ›

Lucifer Morningstar, the King of Hell, is clearly the strongest Hazbin Hotel character. He may be a withdrawn, inactive ruler of his domain, but when Lucifer steps onto the battlefield, he is unmatched in strength.

Who is the youngest character in Hazbin Hotel? ›

Crymini is a supporting protagonist in Hazbin Hotel: Journey to the Light. The "baby of the group", Crymini is a rebellious, moody, yet resourceful teenage, hyena-like sinner suffering from severe trust issues and a bad attitude.

How many swear words are in Hazbin Hotel? ›

The characters in the show often address and refer to one another using explicit language. There are 302 swear words out of the 8 episodes.

Who has a crush on Alastor? ›

Huni has an obvious crush on Alastor, despite his grisly nature, fangirling over him and blushing in his presence.

Who is God in Hazbin Hotel? ›

God the Father is an unseen mentioned character in Hazbin Hotel: Journey to the Light. With a personality which is shrouded in a veil of eccentric ambiguity, God is the ruler of all Creation and the sole progenitor of the Morningstar family, and the Father of the Seven Heavenly Virtues.

What is Alastor afraid of? ›

While Alastor is powerful, he is aware that there are other demons and entities that rival him in terms of power, such as other Overlords. For this reason, he is wary around such demons, as they could potentially harm him if he is not careful.

Who is the weakest overlord in Hazbin Hotel? ›

Alastor is the WEAKEST OVERLORD.

Is Hazbin Hotel OK for 13? ›

This show would be most appropriate for kids 13 and up, but it does depend on your child. Kids younger than 13 could probably get away with watching it, just might require an extra conversation to not take what they watch in the show into real life.

Is Crymini a sinner? ›

Conversation. Did you know Hazbin Hotel had a hyena sinner originally? Her name is Crymini and she's pretty cute!

Is Helluva Boss appropriate for 12 year olds? ›

For teens/adults. A lot of episodes have scenes that deal with sensitive topics like abusive fathers or daddy issues in general, domestic abuse/violence, betrayal, abusive bosses, dysfunctional families, loss, very severe self loathing, and many other sensitive topics that could be quite emotional for some viewers.

What does Vaggie look like? ›

Vaggie was a slender, humanoid, fallen winner with ashen gray-colored skin. She had long, white hair that was styled in a shape resembling moth wings. Her hair silks down in a way that covered the left side of her face. She had a mouth full of sharp teeth, most prominent whenever she was angry.

What is the most popular ship in Hazbin? ›

Chaggie is the most popular Hazbin Hotel ship on AO3.

Is there anything inappropriate in Hazbin Hotel? ›

If this was a movie, it would be rated R for violence, bloody images, language throughout, sexual content and some drug use. Suggested MPAA Rated R for sequences of strong pervasive sexual content throughout, language, drug use, and for strong bloody violence and gore.

Is Alastor straight in Hazbin Hotel? ›

Alastor, also known as the Radio Demon, is asexual. In the season 4 episode, "What Time Is It Right Now", Yolanda reveals that she is asexual when she asks Todd out on a date.

Who is pansexual in Hazbin Hotel? ›

Character Information

Valentino is a pansexual character from Hazbin Hotel.

Top Articles
Round Yellow Adderall
USE CONTROL + F TO SEARCH THIS DOCUMENT …usgenwebsites.org/OHLake/newspaper/Telegraph Abstracts 1892 Stebbins.pdfCleary Mrs. Mary Cleary, relict of the late James Cleary, died at - [PDF Document]
Christian McCaffrey loses fumble to open Super Bowl LVIII
Using GPT for translation: How to get the best outcomes
Evil Dead Rise Showtimes Near Massena Movieplex
Google Jobs Denver
Goteach11
Camstreams Download
What is a basic financial statement?
10 Great Things You Might Know Troy McClure From | Topless Robot
What Time Chase Close Saturday
2021 Lexus IS for sale - Richardson, TX - craigslist
Playgirl Magazine Cover Template Free
Colts Snap Counts
Becu Turbotax Discount Code
Cinebarre Drink Menu
Ostateillustrated Com Message Boards
Earl David Worden Military Service
VERHUURD: Barentszstraat 12 in 'S-Gravenhage 2518 XG: Woonhuis.
Self-Service ATMs: Accessibility, Limits, & Features
Craigslist Lewes Delaware
1973 Coupe Comparo: HQ GTS 350 + XA Falcon GT + VH Charger E55 + Leyland Force 7V
Garnish For Shrimp Taco Nyt
Scheuren maar: Ford Sierra Cosworth naar de veiling
4 Methods to Fix “Vortex Mods Cannot Be Deployed” Issue - MiniTool Partition Wizard
Waters Funeral Home Vandalia Obituaries
This Is How We Roll (Remix) - Florida Georgia Line, Jason Derulo, Luke Bryan - NhacCuaTui
Mississippi Craigslist
Pay Stub Portal
Purdue Timeforge
UPC Code Lookup: Free UPC Code Lookup With Major Retailers
Renfield Showtimes Near Marquee Cinemas - Wakefield 12
Wow Quest Encroaching Heat
Craigslist Georgia Homes For Sale By Owner
Msnl Seeds
That1Iggirl Mega
Claim loopt uit op pr-drama voor Hohenzollern
Cal Poly 2027 College Confidential
The Banshees Of Inisherin Showtimes Near Reading Cinemas Town Square
SF bay area cars & trucks "chevrolet 50" - craigslist
Anderson Tribute Center Hood River
Gregory (Five Nights at Freddy's)
Arnesons Webcam
Po Box 101584 Nashville Tn
Blow Dry Bar Boynton Beach
Conan Exiles Tiger Cub Best Food
War Room Pandemic Rumble
Streameast Io Soccer
Ouhsc Qualtrics
Phunextra
Samantha Lyne Wikipedia
Latest Posts
Article information

Author: Carmelo Roob

Last Updated:

Views: 5574

Rating: 4.4 / 5 (45 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Carmelo Roob

Birthday: 1995-01-09

Address: Apt. 915 481 Sipes Cliff, New Gonzalobury, CO 80176

Phone: +6773780339780

Job: Sales Executive

Hobby: Gaming, Jogging, Rugby, Video gaming, Handball, Ice skating, Web surfing

Introduction: My name is Carmelo Roob, I am a modern, handsome, delightful, comfortable, attractive, vast, good person who loves writing and wants to share my knowledge and understanding with you.