Harry Potter Top 200 (2025)

Featured

Featured

Literature

Harry Potter

Can you name the top 200 characters in the Harry Potter series by number of mentions?

By GeoGod

18m

200 Questions

5.8M Plays5,763,814 Plays

5,763,814 Plays

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(1080);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/200

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

18:00

MentionsCharacter
18,956
6,464
5,486
2,421
2,024
1,956
1,797
1,471
1,198
920
864
821
810
780
771
770
722
637
583
530
493
486
469
467
432
426
356
353
314
312
302
295
288
277
262
262
258
249
246
242
MentionsCharacter
228
224
220
215
212
208
204
190
188
179
165
164
162
162
156
153
147
141
140
140
136
135
133
127
124
123
122
119
117
116
112
110
109
106
105
102
92
90
89
89
MentionsCharacter
85
79
77
77
76
75
75
73
73
73
72
70
68
68
68
64
63
63
63
62
60
59
58
57
56
56
55
54
53
51
50
50
49
49
49
48
48
48
47
42
MentionsCharacter
41
40
39
36
36
35
34
34
33
32
31
31
30
30
30
28
27
27
27
27
27
26
26
26
26
25
25
24
24
23
23
23
23
23
23
23
22
22
21
21
MentionsCharacter
20
20
20
19
19
19
19
18
18
18
18
18
17
17
17
17
16
16
16
16
16
16
16
15
15
15
14
14
14
14
13
13
13
13
13
13
13
13
12
12
Harry Potter Top 200 (2025)

FAQs

Can you name the top 200 characters in the Harry Potter series by number of mentions? ›

Top 200 Harry Potter Characters by Mention
#MentionsAnswer
118,956Harry Potter
26,464Ron Weasley
35,486Hermione Granger
42,421Albus Dumbledore
154 more rows
Nov 27, 2023

What is the hardest Harry Potter question? ›

The 10 hardest questions at Harry Potter trivia in NYC:
  1. In what book was “Gryffindor Versus Ravenclaw” a chapter? ...
  2. What was the name of Aragog's wife? ...
  3. What kind of wood was Lily Potter's wand made of? ...
  4. What Quidditch team did Oliver Wood play for after graduating?
Apr 23, 2018

What is the number 12 in Harry Potter? ›

Headquarters to the Order of the Phoenix, Number Twelve Grimmauld Place was originally the ancestral home of the Black family. A grand town house located in London, the property was protected by a Fidelius Charm, concealing its location.

What is the most powerful number in Harry Potter? ›

Seven was the most powerful magical number, based on centuries of mythology, science, and mathematics, and therefore had a very important role in the wizarding world. Arithmancer Bridget Wenlock was the first to note this through a theorem which exposed the magical properties of the number seven.

Whose name can't you say in Harry Potter? ›

Throughout the series, Rowling establishes that Voldemort is so feared in the wizarding world that it is considered dangerous even to speak his name. Most characters in the novels refer to him as "You-Know-Who" or "He-Who-Must-Not-Be-Named" rather than say his name aloud.

Who is the most hated character in the Harry Potter series? ›

Dolores Umbridge

The most universally hated character from the series has to be Umbridge! She is sadistic and has a tyrannical behaviour as Hogwarts High Inquisitor. She used cruel disciplinary measures and oppressive regulations, which make her the epitome of 'villainy'.

What is Hermione's middle name? ›

Hermione Granger's full name was originally Hermione Jane Granger. However, due to the heavily disliked Umbridge also having this as a middle name, J. K. Rowling retconned Hermione's middle name to "Jean".

What is the rarest ability in Harry Potter? ›

According to Minerva McGonagall, true seers are extremely rare. Sybill Trelawney is the only seer portrayed in the novel. She has twice made true prophecies – both significant to Harry Potter – but had no recollection of either prediction afterward.

What is the deadliest spell in Harry Potter? ›

The Killing Curse ('Avada Kedavra')

Obviously there's no coming back from this spell, and according to the Ministry of Magic's classifications (and, again, fake-Moody) this is the worst Unforgivable Curse.

What Hogwarts year is a 17 year old? ›

A student in their sixth year at Hogwarts School of Witchcraft and Wizardry was called a sixth-year (with a hyphen). At Hogwarts School of Witchcraft and Wizardry, sixth-years were typically 16 to 17 years of age. This was the first year in which students advanced to N.E.W.T.

Why is Hogwarts 9 3 4? ›

Author's comments. "In choosing the number of the concealed platform that would take young witches and wizards to boarding school, I decided that it would have to be a number between those of the Muggle platforms - therefore, it was clearly a fraction.

What does 713 mean in Harry Potter? ›

Inside vault 713 is the place where Dumbledore kept the Philosopher's stone. It was the safest place until Dumbledore realised Quirell was trying to steal it and moved the stone to Hogwarts.

What is Harry's strongest spell? ›

Harry Potter has used some powerful spells during his time at Hogwarts and as one of its prime defenders from the Dark Arts and Voldemort.
  1. 1 Imperio (The Imperius Curse)
  2. 2 Expecto Patronus (The Patronus Charm) ...
  3. 3 Sectumsempra. ...
  4. 4 Expelliarmus (The Disarming Charm) ...
  5. 5 Crucio (The Cruciatus Curse) ...
Feb 28, 2024

Why was Voldemort obsessed with 7? ›

He wanted everything about him to be symbolic, unique and majestic. He had learned from his studies that 7 is the most powerful magical number, so he decided that, if he could have a 7-part soul (6 Horcruxes plus the part inside his physical body), he would be “perfect”, all powerful and indestructible.

Why did Tom Riddle like 7? ›

Tom Riddle intended to split his soul into seven pieces using six magical items with historic value and keeping one part in his body, as seven is considered the most powerful magical number.

Who is the most mentioned character in Harry Potter? ›

As Anne has already said of course Harry, Ron and Hermione are mentioned the most. Harry is obviously mentioned the most at 18956 times as the books are about him.

How many characters are mentioned in Harry Potter? ›

There Are Over 700 Harry Potter Characters, And I'll Be Impressed If You Can Name 25. How magical is your memory? More Quizzes in the App!

What is the most mentioned spell in Harry Potter? ›

While there were a great many spells which were used regularly throughout the franchise, it was "Stupefy" which was most prolific, being used almost thirty times across the movies.

Who has the longest full name in Harry Potter? ›

Albus Dumbledore, the headmaster of Hogwarts, was one of the few characters in the Harry Potter series to have really long names. His full name was Albus Percival Wulfric Brian Dumbledore.

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Margart Wisoky

Last Updated:

Views: 5621

Rating: 4.8 / 5 (78 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Margart Wisoky

Birthday: 1993-05-13

Address: 2113 Abernathy Knoll, New Tamerafurt, CT 66893-2169

Phone: +25815234346805

Job: Central Developer

Hobby: Machining, Pottery, Rafting, Cosplaying, Jogging, Taekwondo, Scouting

Introduction: My name is Margart Wisoky, I am a gorgeous, shiny, successful, beautiful, adventurous, excited, pleasant person who loves writing and wants to share my knowledge and understanding with you.