User:Qwerfjkl/sandbox/refpunc
Appearance
< User:Qwerfjkl | sandbox
// code
function clean_wikitext(text) {
const replacements = [
[/'|'/g, '\''], // Replace curly single quotes with straight ones
[/"|"/g, '"'], // Replace curly double quotes with straight ones
[/(\n[^\|\}].+) +\n/g, '$1\n'], // Remove lines' trailing spaces (that don't start with "|" or "}"
[/^(=+) *(.*?) *\1$/gm, '$1 $2 $1'], // Standardise spacing inside headers
[/\n+^((=+) .*? \2)$/gm, '\n\n$1'], // Standardise spacing before headers
[/^((=+) .*? \2)$\n+/gm, '$1\n\n'], // Standardise spacing after headers
[/\n{3,}/g, '\n\n'], // Replace three or more newlines with two newlines
// (unreliable) [/(?<!^|\||=) {2,}(?! *[\|=])/gm, ' '], // Replace two or more spaces (not preceded or followed by a pipe or equals sign nor at the beginning of a line) with one space
[/((?:<ref[^>]*?>[^>]*?<\/ref>){1,})\. /gm, '.$1 '], // Taken from [[User:Novem Linguae/DraftCleaner.js]]
[/((?:<ref[^>]*?>[^>]*?<\/ref>){1,})\.\n/gm, ".$1\n"], // Fix ref punctuation
[/(?<!\[)\[https?:\/\/en\.wikipedia\.org\/wiki\/([^ \]]*)(?: ([^\]]*))?\]/gs, function(match, p1, p2) {
p1 = decodeURIComponent(p1);
p1 = p1.replace(/_/g, ' ');
if (p2 == undefined) {
return `[[${p1}]]`;
} else {
return `[[${p1}|${p2}]]`;
} }],
// Taken from [[User:Ingenuity/cleaner.js]]; clean up references
[/ ?(<ref(?: name ?= ?"[^<>]{0,30}")?>(?:(?!<\/ref>).)+?<\/ref>)/gs, "$1"],
[/ ?(<ref name ?= ?"[^<>]{0,30}" ?\/>)/gs, "$1"],
[/(<ref(?: name ?= ?"[^<>]{0,30}")?>(?:(?!<\/ref>).)+?<\/ref>)[\n ]?([,\.\?\!\;])/gs, "$2$1"],
[/(<ref name ?= ?"[^<>]{0,30}" ?\/>)[\n ]?([,\.\?\!\;])/g, "$2$1"],
// Taken from pywikibot safe-syntax replaces, from the fixes.py script
[/\[\[(?<url>https?:\/\/[^\]]+?)\]\]/g, '[$1]'], // external link in double brackets
[/\[\[(?<url>https?:\/\/.+?)\]/g, '[$1]'], // external link starting with double bracket
[/\[(?<url>https?:\/\/[^\|\] \r\n]+?) +\| *(?<label>[^\|\]]+?)\]/, '[$1 $2]'], // external link and description separated by a dash, with whitespace in front of the dash, so that it is clear that the dash is not a legitimate part of the URL.
[/\[(?<url>https?:\/\/[^\|\] ]+?(\.pdf|\.html|\.htm|\.php|\.asp|\.aspx|\.jsp)) *\| *(?<label>[^\|\]]+?)\]/, '[$1 $3]'], // dash in external link, where the correct end of the URL can be detected from the file extension. It is very unlikely that this will cause mistakes.
[/\[\[([^\|\]]+)\|\1\]\]/, '[[$1]]'], // link equal to linktext
// Taken from [[User:Sam Sailor/Scripts/autoFormatterSettings.js]]
// [ 'use <ref>', 'use ref' ],
[ / =\n/g, ' = \n' ], // add trailing space after = for empty infobox parameters
[ /\{\{ /g, '{{' ], // remove space after {{
[ /\|tau\]\]/g, '|τ]]' ], // fix unwanted change in category sorting
[ /b\. *(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)/g, 'born $1' ], // replace "b. Jan" with "born Jan"
[ /b\. *([0-9]{1,2}) *(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)/g, 'born $1 $2' ], // replace "b. 31 Jan" with "born 31 Jan"
[ /(born|b\.) \{\{ *birth ?date *\|/ig, 'born {{SUBST:User:Zyxw/bd|' ], // fix duplicated birth date templates
[ /(\| *height *= *\{\{convert\| *[1-2]),([0-9]{1,2} *\| *m)/ig, '$1.$2' ], // fix height with comma in {{convert}}
[ /\n\{\{Baseballstats/ig, '\n* {{Baseball stats' ], // start line with asterisk
[ /\n\{\{Basketballstats/ig, '\n* {{Basketball stats' ], // start line with asterisk
[ /\n\{\{Footballstats/ig, '\n* {{Football stats' ], // start line with asterisk
[ /\n(== *)External Links( *==)/, '\n$1External links$2' ],
[ /\n(== *)External Link( *==)/, '\n$1External links$2' ],
[ /\n(== *)External links( *==)/, '\n$1External links$2' ],
[ /\n(== *)Further Reading( *==)/, '\n$1Further reading$2' ],
[ /\n(== *)Published Papers( *==)/, '\n$1Published papers$2' ],
[ /\n(== *)See Also( *==)/, '\n$1See also$2' ],
[ /\n(== *)Selected Works( *==)/, '\n$1Selected works$2' ],
[ /([0-9]{4})-present/ig, '$1–present' ],
// templates renamed
[ /\{\{Infobox Airliner accident( |\||\}|\n)/ig, '{{Infobox aircraft occurrence$1' ],
[ /\{\{airport-dest-list( |\||\}|\n)/ig, '{{airport destination list$1' ],
[ /\{\{Baseballstats( |\||\}|\n)/ig, '{{Baseball stats$1' ],
[ /\{\{Basketballstats( |\||\}|\n)/ig, '{{Basketball stats$1' ],
[ /\{\{b-da( |\||\}|\n)/ig, '{{birth-date and age$1' ],
[ /\{\{bda( |\||\}|\n)/ig, '{{birth date and age$1' ],
[ /\{\{citebook( |\||\}|\n)/ig, '{{cite book$1' ],
[ /\{\{citenews( |\||\}|\n)/ig, '{{cite news$1' ],
[ /\{\{citeweb( |\||\}|\n)/ig, '{{cite web$1' ],
[ /\{\{Current Iowa Representatives( |\||\}|\n)/ig, '{{Iowa House of Representatives$1' ],
[ /\{\{d-da( |\||\}|\n)/ig, '{{death-date and age$1' ],
[ /\{\{dda( |\||\}|\n)/ig, '{{death date and age$1' ],
[ /\{\{eliteprospects( |\||\}|\n)/ig, '{{EliteProspects$1' ],
[ /\{\{empty category( |\||\}|\n)/ig, '{{Possibly empty category$1' ],
[ /\{\{Find a grave( |\||\}|\n)/ig, '{{Find a Grave$1' ],
[ /\{\{Findagrave( |\||\}|\n)/ig, '{{Find a Grave$1' ],
[ /\{\{FAG( |\||\}|\n)/ig, '{{Find a Grave$1' ],
[ /\{\{Fag( |\||\}|\n)/ig, '{{Find a Grave$1' ],
[ /\{\{Fg( |\||\}|\n)/ig, '{{Find a Grave$1' ],
[ /\{\{FIBT profile( |\||\}|\n)/ig, '{{IBSF$1' ],
[ /\{\{fig( |\||\}|\n)/ig, '{{FIG$1' ],
[ /\{\{footballbox collapsible( |\||\}|\n)/ig, '{{football box collapsible$1' ],
[ /\{\{Footballstats( |\||\}|\n)/ig, '{{Football stats$1' ],
[ /\{\{hockeydb( |\||\}|\n)/ig, '{{HockeyDB$1' ],
[ /\{\{Icehockeystats( |\||\}|\n)/ig, '{{Ice hockey stats$1' ],
[ /\{\{Ice Hockey Stats( |\||\}|\n)/ig, '{{Ice hockey stats$1' ],
[ /\{\{Ice Hockey Stats( |\||\}|\n)/ig, '{{Ice hockey stats$1' ],
[ /\{\{India Districts( |\||\}|\n)/ig, '{{Infobox India district$1' ],
[ /\{\{Infobox art( |\||\}|\n)/ig, '{{Infobox artwork$1' ],
[ /\{\{Infobox athlete( |\||\}|\n)/ig, '{{Infobox sportsperson$1' ],
[ /\{\{Infobox baseball player( |\||\}|\n)/ig, '{{Infobox baseball biography$1' ],
[ /\{\{Infobox basketball player( |\||\}|\n)/ig, '{{Infobox basketball biography$1' ],
[ /\{\{Infobox CFL player( |\||\}|\n)/ig, '{{Infobox CFL biography$1' ],
[ /\{\{Infobox Given Name( |\||\}|\n)/ig, '{{Infobox given name$1' ],
[ /\{\{Infobox Given name( |\||\}|\n)/ig, '{{Infobox given name$1' ],
[ /\{\{Infobox Given Name 2( |\||\}|\n)/ig, '{{Infobox given name$1' ],
[ /\{\{Infobox Given name 2( |\||\}|\n)/ig, '{{Infobox given name$1' ],
[ /\{\{Infobox Given Name Revised( |\||\}|\n)/ig, '{{Infobox given name$1' ],
[ /\{\{Infobox given name2( |\||\}|\n)/ig, '{{Infobox given name$1' ],
[ /\{\{Infobox given name( |\||\}|\n)/ig, '{{Infobox name$1' ],
[ /\{\{Infobox gridiron football person( |\||\}|\n)/ig, '{{Infobox CFL biography$1' ],
[ /\{\{Infobox Mandir( |\||\}|\n)/ig, '{{Infobox Hindu temple$1' ],
[ /\{\{Infobox Military Cemetery( |\||\}|\n)/ig, '{{Infobox military memorial$1' ],
[ /\{\{Infobox Military Memorial( |\||\}|\n)/ig, '{{Infobox military memorial$1' ],
[ /\{\{Infobox Military Structure( |\||\}|\n)/ig, '{{Infobox military installation$1' ],
[ /\{\{Infobox MLB player( |\||\}|\n)/ig, '{{Infobox baseball biography$1' ],
[ /\{\{Infobox mountain range( |\||\}|\n)/ig, '{{Infobox mountain $1' ],
[ /\{\{Infobox NBA biography( |\||\}|\n)/ig, '{{Infobox basketball biography$1' ],
[ /\{\{Infobox NFL player( |\||\}|\n)/ig, '{{Infobox NFL biography$1' ],
[ /\{\{Infobox painting( |\||\}|\n)/ig, '{{Infobox artwork$1' ],
[ /\{\{Infobox surname( |\||\}|\n)/ig, '{{Infobox name$1' ],
[ /\{\{Infobox volleyball player( |\||\}|\n)/ig, '{{Infobox volleyball biography$1' ],
[ /\{\{ISAF sailor( |\||\}|\n)/ig, '{{World Sailing profile$1' ],
[ /\{\{IBSF profile( |\||\}|\n)/ig, '{{IBSF$1' ],
[ /\{\{ISSF name( |\||\}|\n)/ig, '{{ISSF$1' ],
[ /\{\{ISU name( |\||\}|\n)/ig, '{{ISU figure skater$1' ],
[ /\{\{ITF (male|female) profile( |\||\}|\n)/ig, '{{ITF profile$2' ],
[ /\{\{(L)ang(?:uage)?[ \-]?icon( |\||\}|\n)/ig, '{{$1ink language$2' ],
[ /\{\{(P)ortalbar( |\||\}|\n)/ig, '{{Portal bar$1' ],
[ /\{\{Robert Awards chron( |\||\}|\n)/ig, '{{Robert Awards$1' ],
[ /\{\{spanish name( 2)?( |\||\}|\n)/ig, '{{Spanish name$2' ],
[ /\{\{url( |\||\}|\n)/ig, '{{URL$1' ],
[ /\{\{USAGymnastics name( |\||\}|\n)/ig, '{{USA Gymnastics$1' ],
[ /\{\{USAGymnasticsName( |\||\}|\n)/ig, '{{USA Gymnastics$1' ],
[ /\{\{wta( |\||\}|\n)/ig, '{{WTA$1' ],
[ /\{\{worldcurling( |\||\}|\n)/ig, '{{World Curling Federation$1' ],
[ /\{\{worldcurlingtour( |\||\}|\n)/ig, '{{World Curling Tour$1' ],
[ /\{\{worldcurl( |\||\}|\n)/ig, '{{World Curling Tour$1' ],
// convert {{USCSub}} with only two parameters to {{USC}}
[
/\|etseq\}\}/g,
'}} [[et seq.]]'
], // fix invalid subsection link
[
/\{\{USCSub\|([0-9]{1,2})\|([0-9a-z]{1,7})\}\}/ig,
'{{USC|$1|$2}}'
],
// renamed URLs
[ 'books.google.co.uk', 'books.google.com' ],
[ 'books.google.dk', 'books.google.com' ],
[ 'http://www.collegefootball.org/famersearch.php?id=', 'http://www.footballfoundation.org/Programs/CollegeFootballHallofFame/SearchDetail.aspx?id=' ],
[ 'http://www.collegefootball.org/famer_selected.php?id=', 'http://www.footballfoundation.org/Programs/CollegeFootballHallofFame/SearchDetail.aspx?id=' ],
[ 'http://www.profootballhof.com/hof/member.jsp?PLAYER_ID=', 'http://www.profootballhof.com/hof/member.aspx?PlayerId=' ],
[ 'http://www.profootballhof.com/hof/member.jsp?player_id=', 'http://www.profootballhof.com/hof/member.aspx?PlayerId=' ],
[ 'http://www.profootballhof.com/hof/member.aspx?PLAYER_ID=', 'http://www.profootballhof.com/hof/member.aspx?PlayerId=' ],
[ 'http://www.profootballhof.com/hof/member.aspx?player_id=', 'http://www.profootballhof.com/hof/member.aspx?PlayerId=' ],
// convert bare ISSF URL to ext link
[
/http:\/\/www\.issf-sports\.org\/athletes\/athlete\.ashx\?personissfid=([A-Z]{6}[0-9]{10})/g,
'\n==External links==\n* {{ISSF name | $1 }}'
],
// athletics related
[ /\{\{iaaf name/ig, '{{IAAF' ],
[ /\| *?letter *?= *?[A-Za-z] *?([\|\}])/g, '$1' ], // remove deprecated letter parameter and value from Template:IAAF
[ '{{AchievementTable', '{{AchievementTable|width=auto' ],
[ '{{AchievementTable|width=auto|width=auto', '{{AchievementTable|width=auto' ],
[
/\{\{MedalSport ?\| ?(Men's|Women's) \[\[Athletics \(sport\)\|Athletics\]\] ?\}\}/ig,
'{{MedalSport | $1 [[athletics (sport)|athletics]]}}'
],
[
/\{\{MedalSport ?\| ?(Men's|Women's) Athletics ?\}\}/ig,
'{{MedalSport | $1 [[athletics (sport)|athletics]]}}'
],
// rowing related
[
/\{\{MedalCountry ?\| ?(\{\{[A-Z]{3}\}\}) ?\}\}\n\{\{MedalSport ?\| ?\[\[Rowing at the Summer Olympics\|(Men's|Women's) Rowing\]\] ?\}\}\n\{\{MedalCompetition ?\| ?\[\[Olympic Games\]\] ?\}\}/ig,
'{{MedalSport | $2 [[rowing (sport)|rowing]] }}\n{{MedalCountry | $1 }}\n{{MedalCompetition | [[Rowing at the Summer Olympics|Olympic Games]]}}'
],
[
/\{\{MedalTop\}\}\n\{\{MedalSport ?\| ?(Men's|Women's) \[\[Rowing at the Summer Olympics\|Rowing\]\] ?\}\}/ig,
'{{MedalTableTop}}\n{{MedalSport | $1 [[rowing (sport)|rowing]] }}\n{{MedalCountry | {{unk}} }}\n{{MedalCompetition | [[Rowing at the Summer Olympics|Olympic Games]]}}'
],
[
/\{\{MedalSport ?\| ?(Men's|Women's) \[\[Rowing \(sport\)\|Rowing\]\] ?\}\}/ig,
'{{MedalSport | $1 [[rowing (sport)|rowing]]}}'
],
[
/\{\{(MedalSport|MedalCompetition|Medal\|Comp) ?\| ?\[\[Rowing World Championships/g,
'{{MedalCompetition | [[World Rowing Championships'
],
[
/\{\{(MedalSport|MedalCompetition|Medal\|Comp) ?\| ?\[\[(Olympic Games|World Rowing Championships|World Rowing Championships\|World Championships|European Rowing Championships|European Rowing Championships\|European Championships)\]\] ?\}\}/g,
'{{MedalCompetition | [[$2]]}}'
],
[ /\[\[Rowing \(sport\)\|row/ig, '[[rowing (sport)|row' ],
[ /\[\[Sport rowing\|/ig, '[[rowing (sport)|' ],
[ /\[\[Coxswain\|cox/ig, '[[coxswain (rowing)|cox' ],
// general medal template formatting
[ /\{\{Medal\|?Olympics?\}\}/ig, '{{MedalCompetition | [[Olympic Games]] }}' ],
[ /\{\{Medal\|?WorldChampionships\}\}/ig, '{{MedalCompetition | World Championships }}' ],
[ /\{\{Medal\|?EuropeanChampionships\}\}/ig, '{{MedalCompetition | European Championships }}' ],
[
/\{\{(Medal\|?(?:Sport|Country|Competition|Comp|Gold|Silver|Bronze|Disqualified)) *\| *(.*?) ?\}\}\n/g,
'{{$1 | $2 }}\n'
], // spacing for readability when editing
[
/\]\] *\| *(?![\|])/g,
']] | '
], // spacing before 2nd parameter - replace "]]|" with "]] | " unless followed by another |
[
/\n(\}\}|\{\{MedalBottom\}\})\n?'''/g,
"\n$1\n\n'''"
], // blank line between end of infobox or medal templates and first sentence
[
/\[\[([0-9]{4}) (Summer Olympics|Winter Olympics|World Rowing Championships)\|(.+?(?= [0-9])) ([0-9]{4})\]\]/g,
'[[$1 $2|$4 $3]]'
], // from [[1984 Summer Olympics|Los Angeles 1984]] to [[1984 Summer Olympics|1984 Los Angeles]]
[ /\{\{MedalTop\|?\}\}/ig, '{{MedalTableTop | name = no | medals =\n{{MedalCompetition | [[Olympic Games]] }}' ],
[ /\{\{MedalTableTop\|?\}\}/ig, '{{MedalTableTop | medals =' ],
[ /\{\{MedalBottom\}\}/ig, '}}' ],
[
/(\{\{Medal\|?Country[^\n]*\n)(\{\{Medal\|?Sport[^\n]*\n)/i,
'$2$1'
], // place MedalCountry after MedalSport
// if no ref section
// [ /\.\n\n== ?External links ?==/g, '.\n\n== References ==' ],
// sports-ref citations
[
/(>|\* *)\[?(http:\/\/www\.sports\-reference\.com\/olympics\/athletes\/[a-z]{2}\/[a-z1-9\-]{3,30}\.html) *[A-Za-z \]\-\.]*(\n|<\/ref>)/ig,
'$1{{cite Sports-Reference |url=$2}}$3'
],
[
/\{\{cite web *\| *title *= *Olympics *\| *url *= *(http:\/\/www\.sports\-reference\.com\/olympics\/athletes\/[a-z]{2}\/[a-z1-9\-]{3,30}\.html) *\| *publisher *= *sports\-reference *\| *accessdate *= */ig,
'{{cite Sports-Reference |url=$1 |accessdate='
],
[
/\{\{cite web *\| *url *= *(http:\/\/www\.sports\-reference\.com\/olympics\/athletes\/[a-z]{2}\/[a-z1-9\-]{3,30}\.html) *\| *title *= *([^\|]*)\| *publisher *= *Sports\-reference\.com *\| *accessdate *= */ig,
'{{cite Sports-Reference |url=$1 |title=$2|accessdate='
],
[
/\{\{Sports-reference *\| *id *= */ig,
'{{cite Sports-Reference |url=http://www.sports-reference.com/olympics/athletes/'
],
[
/\{\{Sports-reference *\|/ig,
'{{cite Sports-Reference |url=http://www.sports-reference.com/olympics/athletes/'
],
[
/\{\{Sports-reference\}\}/ig,
'{{cite Sports-Reference}}'
],
[
/\{\{cite Sports\-Reference \|url=([^0-9]*[0-9])([^\.])/ig,
'{{cite Sports-Reference |url=$1.html$2'
], // add .html if missing
[
/\{\{ *cite *sports\-reference *\| *1 *= *([^\|]*)\| *2 *= *([^\|]*)\| *3 *= *([^\}]*)}}/ig,
'{{cite Sports-Reference|title=$1|url=$2|accessdate=$3}}'
],
// replace link with template
[
/\[http:\/\/www\.databaseolympics\.com\/players\/playerpage\.htm\?ilkid=([A-Z0-9%]{5,30}) (Olympics profile|profile|databaseOlympics)\]/ig,
'{{databaseOlympics |id=$1}}'
],
// boxing related
[
/(==Professional boxing record==[\n\r]*?)\{\{[Ss]-start}}([\n\r]*?\|)/g,
'$1{| class="wikitable" style="text-align:center;"$2'
],
[
/\[(http:\/\/boxrec\.com\/list_bouts\.php\?human_id=[0-9]{1,6}&cat=boxer)]/g,
"<ref>[$1 Boxing record for {{PAGENAMEBASE}}]. ''[[BoxRec.com]]''.</ref>"
],
[ '{{boxrec|id=', '{{BoxRec|' ],
[ '|align="center" colspan=8', '| colspan="8"' ],
[ '| align="center" style="border-style:', '| style="border-style:' ],
[
/(\| *)([0-9]{2})\/([0-9]{2})\/([0-9]{4})/g,
'$1$4-$3-$2'
], // replace "| 31/12/2015" with "| 2015-12-31"
[
/(\| *)([0-9]{4})[–—−\/]([0-9]{2})[–—−\/]([0-9]{2})/g,
'$1$2-$3-$4'
], // replace "| 2015–12–31" with "| 2015-12-31" (endash/emdash/minus/slash to hyphen)
// cricket external links
[
/\{\{ *Cricinfo/ig,
'{{ESPNcricinfo'
],
[
/\{\{ *Cricketarchive/ig,
'{{CricketArchive'
],
[
/\{\{ *Yahoo!_Cricket/ig,
'{{Yahoo! Cricket'
],
[
/\{\{ESPNcricinfo *\| *ref *= *[a-z]*\/content\/player\/([0-9]*)\.html/ig,
'{{ESPNcricinfo |id= $1'
],
[
/\{\{CricketArchive *\| *ref *= *Archive\/Players\/[0-9]*\/[0-9]*\/([0-9]*)\.html/ig,
'{{CricketArchive |id= $1'
],
[
/\{\{Yahoo! Cricket *\| *ref *= *player\-profile\/([a-z0-9_\-]*)/ig,
'{{Yahoo! Cricket |id= $1'
],
// infobox image cleanup
[
/(\| *image *= *)(Image:|File:)/g,
'$1'
], // if "| image = File:name" is used, remove unneeded "File:"
// spaces after bullets
[
/(\n[*#]+) *([^\s*#:;R])/g,
'$1 $2'
], // space after one or more * or # at start of line
// table spacing for readability when editing
[
/\n\|(?![\s\n\-\+\}\|])/g,
"\n| "
], // space after | at start of line, if not followed by space newline - + } |
[
/\n(\!|\{\||\|\+|\|\-)(?![\s\n])/g,
"\n$1 "
], // space after ! {| |+ |- at start of line, if not followed by space or newline
// [
// /(\|\||\!\!)(?![\s\n])/g,
// "$1 "
// ], // space after || or !! if not followed by space or newline
// [
// /([^\s\n])(\|\||\!\!)/g,
// "$1 $2"
// ], // space before || or !! if not preceded by space or newline
[
/(\{\{[a-z]*) \|\| /ig,
"$1||"
], // fix templates changed from "{{abc||" to "{{abc || "
[
/align=("?)(left|right|center)("?) *\| */g,
'align=$1$2$3 | '
], // spacing around | in table rows with align="right", etc.
[
/(background: *|bgcolor=)("?)(#?\w{1,6}|[a-z]{3,20})("?) *\| */g,
'$1$2$3$4 | '
], // spacing around | in table rows with bgcolor=#F9E8C7, bgcolor="red", background: #F9E8C7, etc.
[
/scope=("?)(col|row)("?) *\| */g,
'scope=$1$2$3 | '
], // spacing around | in table rows with scope="col", etc.
[
/span=("?)([1-9]{1,3})("?) *\| */g,
'span=$1$2$3 | '
], // spacing around | in table rows with colspan="13", rowspan="2", etc.
[
/(width="?[0-9]{1,3}%?"?)\|/g,
'$1 | '
], // spacing around | in table rows with width="100", width="5%", etc.
[
/; *"\| */g,
';" | '
], // spacing around | in table rows with ;"
[
/\|\-\n\|\}/g,
'|}'
], // remove unneeded |- (<tr>) at end of table
[
/(\|\-\n)\n/g,
'$1'
], // remove extra blank line after |- in table
[
/\n(\n\|\})/g,
'$1'
], // remove extra blank line before |} in table
[
/(\n\! )\|/g,
'$1'
], // remove unneeded | after !
[
/\n\|\-(\n\|\-)/g,
'$1'
], // remove duplicate |-
];
for (const replacement of replacements) {
text = text.replace(...replacement);
}
return text;
}
function process_summary(summary) {
const ac_summary = 'cleanup (via [[User:Qwerfjkl/scripts/autoCleanup|autoCleanup.js]])';
if (summary) {
if (/^\/\*.*?\*\/ $/.test(summary)) { // auto summary
return summary + ac_summary;
} else {
return summary + '; ' + ac_summary;
}
} else {
return ac_summary;
}
}
function main() {
mw.notify(
'Processing...',
{
tag: 'tol-autocleanup',
title: 'AutoCleanup',
type: 'info',
autoHide: true,
autoHideSeconds: 2
}
);
let old_text = oldText
let new_text = clean_wikitext(old_text);
if (old_text != new_text) {
summary=process_summary()
mw.notify(
'Done',
{
tag: 'tol-autocleanup',
title: 'AutoCleanup',
type: 'success'
}
);
return {text:new_text, summary: summary}
} else {
mw.notify(
'No changes made',
{
tag: 'tol-autocleanup',
title: 'AutoCleanup',
type: 'info'
}
);
}
}
main();
- .ie
- "Hello, World!" program
- 1. FC Kaan-Marienborn
- 1000 (number)
- 180-line television system
- 1890 United States census
- 1914 Indianapolis 500
- 1954 in Romania
- 1954 in spaceflight
- 1966 Georgia gubernatorial election
- 1976 12 Hours of Sebring
- 1983 Australian Labor Party leadership spill
- 1988 Hargeisa-Burao offensive
- 1993 in Wales
- 2 Unlimited discography
- 2-NBDG
- 2000–01 California electricity crisis
- 2009 Beemapally police shooting
- 2012 in Iraq
- 2014–15 Ohio Bobcats women's basketball team
- 2019 Damallsvenskan
- 2021 United Kingdom census
- 2022 African Judo Championships
- 2022 Bega state by-election
- 2022 Bolivian ombudsman election
- 2022 Conservative Party of Canada leadership election
- 2022 Dutch Darts Masters
- 2022 European Rally Championship
- 2022 food crises
- 2022 Giro d'Italia
- 2022 in British music
- 2022 Mediterranean Games
- 2022 monkeypox outbreak in the United Kingdom
- 2022 NCAA Division I baseball season
- 2022 Pacific hurricane season
- 2022 PDC World Cup of Darts
- 2022 Toronto municipal election
- 2022 United States House of Representatives elections in Minnesota
- 2022–23 Dumbarton F.C. season
- 2022–23 Red Star Belgrade season
- 20th Television
- 2Baba
- 2I/Borisov
- 30 Hudson Street
- 300 (number)
- 350.org
- 441-line television system
- 56th Rescue Squadron
- 5G NR frequency bands
- 6ix9ine
- 8th Battalion (90th Winnipeg Rifles), CEF
- A Glastonbury Romance
- A Jubilee of Music
- A View from the Terrace
- A.S.D. Viareggio Calcio
- Abbasi Hotel
- Abbasid Caliphate
- Abdulahad AbdulNour
- Abigail Spears
- Abomination (Biblical)
- Abortion in Poland
- Abstract machine
- Abu Aḥmad Abdal Chishti
- Academic ranks in the Netherlands
- Accelerated Graphics Port
- Actinopyga varians
- Activation function
- Acute accent
- AD Drama
- Adam Bartley
- Adam Khoo
- Adam Leroy Lane
- Adam Mickiewicz
- Adebayo Ogunlesi
- Adnan
- Adrian Politowski
- Advance Publications
- African Judo Union
- African swine fever virus
- Agathla Peak
- Agdistis
- Aggravated felony
- AGM-114 Hellfire
- Agrégation d'histoire
- Agricultural policy
- AgustaWestland AW159 Wildcat
- Ah-Tah-Thi-Ki Seminole Indian Museum
- Aharon Pfeuffer
- Ahirwada
- Ahkan
- Ahmad Waqass Goraya
- Ahmed Shaheed
- AIDS Garden Chicago
- Air traffic management
- AirAsia
- Ajmal Ameer
- Ajmaline
- Akash Sunethkumara
- Akhada (TV series)
- Akron Executive Airport
- Al Muratsuchi
- Alan Amos
- Alan Shields
- Alaska Nanooks
- Alaska pollock
- Alberich Rabensteiner
- Aleksey Kuzmitsky
- Alex Kipman
- Alex Lasry
- Alex Seropian
- Alexander von Bunge
- Alexis Bowater
- Alf Fenwick
- Alfonso, Duke of Anjou and Cádiz
- Alfred Clunies-Ross
- Ali Akbar Salehi
- Ali Haji (actor)
- Alice Crary
- Alicia Boutilier
- Alina Pash
- All About You (Taeyeon song)
- All Star Shore
- All-America
- Allan Freese
- Alliance Defending Freedom
- Alliance Theatre
- Allotment (gardening)
- Allyn Ann McLerie
- Almeida, Portugal
- Alor–Pantar languages
- Alphonse Dugenne
- Alpine skiing at the 2022 Winter Olympics
- Altai people
- Alternate reality game
- Alyxia buxifolia
- Amanda Simard
- Amarbayasgalan Dashzegve
- Amazon Books
- Ambidextrous organization
- American folk music
- American Israel Public Affairs Committee
- Americans
- Amhrán na bhFiann
- Amir Al-Momenin University of Military Sciences and Technology
- Amir Gross Kabiri
- Amit Goyal
- Amnicolidae
- Amritha Aiyer
- An Appeal to Reason
- Analytical Chemistry (journal)
- Anarchism in Greece
- Anatoly Pepelyayev
- Anatomical terms of bone
- Ancient Church of the East
- André Galvão
- Andre Wright
- Andrea Angeli
- Andrena wilkella
- Andrew Peacock
- Andrew Wachtel
- Andriy Bandera
- Andy Jassy
- Angela Bairstow
- Angeline Quinto
- AngelScript
- Anglican Diocese of Sierra Leone
- Ani-Jam
- Animegao kigurumi
- Ann Pancake
- Ann Widdecombe
- Anna Haverland
- Anna Parkina
- Anne Frank
- Anne Warner (rower)
- Ano Turtiainen
- Antipsychotic
- Anton Krasovsky
- Antonino Ferro
- Antonio Mordini
- Antonios Mikos
- Anwar al-Bunni
- Aphonopelma bicoloratum
- Apidima Cave
- Apollo Kaggwa
- Apple Records
- April 1922
- Arachnura melanura
- Aranmanai 3
- Araucaria bidwillii
- Arch of Titus
- Arctic policy of the European Union
- Arienne Dwyer
- Arkady Volozh
- Armenian illuminated manuscripts
- Arminianism
- Arthritis
- Arts and Letters Club of Toronto
- Aruba
- Arunasva
- Asana (software)
- ASDAN
- Ash Wednesday
- Ash-throated gnateater
- Ashina tribe
- Assam State Consumer Disputes Redressal Commission
- Assata's Daughters
- Aston railway station
- Atascadero State Hospital
- Atelocyanobacterium thalassa
- Atheist Alliance International
- Athlone Institute of Technology
- Atlantic voyage of the predecessor of Mansa Musa
- Atmosphere-breathing electric propulsion
- Auditorium Theatre
- Audrey Cooper
- August 1967
- Augustus Henry Keane
- Aumann's agreement theorem
- Australian frontier wars
- Australian Labor Party
- Australian sprat
- Austria
- Auto Pilen
- Auvergnat
- Avantiswami Temple
- Avner Avraham
- Avondale University
- Avril Lavigne replacement conspiracy theory
- Awards and decorations of the Civil Air Patrol
- Axiom Orbital Segment
- Axoni
- Aya Mouallem
- Ayinla (film)
- Ayu Ting Ting
- Ayutthaya Kingdom
- Azelaic acid
- Baba Hari Dass
- Bạch Long Vĩ Island
- Back-Up Interceptor Control
- Bacterial small RNA
- Badarian culture
- Bae Yoon-kyung
- Baga Chipz
- Bak Tongsa
- Baker College
- Bal des débutantes
- Bal Krishen Rathore
- Balcha Safo
- Bald Eagle (clipper)
- Bale Mountains National Park
- Ballet Robotique
- Baltic Germans
- Baltic Romani
- Bangkok
- Banksia
- Bannanje Govindacharya
- Barbara Hall (editor)
- Barbara Hernandez
- Barbara Pocock
- Barbara Shelley
- Barbarella (film)
- Barbital
- Barbora Krejčíková
- Barcelona Centre for International Affairs
- Barkerville
- Barnard Island Group National Park
- Barnardisation
- Barnston Island Ferry
- Barrie Chaplin
- Barry Latzer
- Barry Sussman
- Bartha Knoppers
- Basel School of Business
- Batenburg
- Bathypolypus sponsalis
- Batman/Superman/Wonder Woman: Trinity
- Battle of Afabet
- Battle of Ambon
- Battle of Changsha (1939)
- Battle of Copenhagen (1801)
- Battle of er-Rias
- Battle of Redinha
- Battle of Sasu
- Battle of Smolensk (1941)
- Battle of the Sexes (tennis)
- Battle of Thermopylae (1941)
- Battle of Vaslui
- Baumer Hall
- Bayes' theorem
- Bayou Bienvenue
- BC Borisfen
- Be2gether
- Beacon Line
- Beam emittance
- Beast of Gévaudan
- Beatrice Crona
- Beaumont Street, Newcastle
- Beauty and the Beast (2014 film)
- Béchir Sfar
- Beddomeia fultoni
- Bedrich Benes
- Begnet
- Being Human Foundation
- Belgian Entertainment Association
- Belsen Was a Gas
- Ben Cooper
- Ben Guerir
- Ben Johns
- Ben Nwankwo
- Ben Perowsky
- Benedict Vilakazi (soccer)
- Benedictine University
- Benedikt Guðmundsson
- Benelli Supernova
- Bengali language
- Bengt-Arne Johansson (officer)
- Beni Douala
- Beni Mazar
- Benito Pastoriza Iyodo
- Benjamin Brandreth
- Benni McCarthy
- Benny Paret vs. Emile Griffith III
- Benperidol
- Berchem service station
- Berdysyčran-depe
- Berhala Island (Malacca Strait)
- Berlin Music Video Awards
- Bernard Le Grelle
- Beryllium
- Beşir Fuad
- Besix
- Bessie Raiche
- Beta Pictoris c
- Beth Taylor (mezzo-soprano)
- Beverley
- Beverley Humphreys
- Bezafibrate
- Bhagalpur Municipal Corporation
- Bhagavata
- Bharata (Mahabharata)
- Bhattacharyya distance
- Bheeshma Parvam (soundtrack)
- Bhekisisa Centre for Health Journalism
- Biancamaria Frabotta
- Bibliography of Stanisław Lem
- Bibliometrics
- Bibliothèque Marmottan
- Bichoo (TV series)
- Biddy Mason
- Big Ben
- Big C
- Big Cat Rescue
- Big Girls Don't Cry (The Weather Girls album)
- Big Sur
- Bigg Boss (Hindi season 15)
- Bihar Lok Adalat
- Bilel Mohsni
- Bill Browder
- Bill Gaskins
- Bill Griggs
- Bill Milkowski
- Bill Rieflin
- Bill Stetson
- Billie Shepherd
- Billion Oyster Project
- Bindya Solanki
- Biofloc Technology
- Bionics
- BIOTESC
- Bipartisanship
- Bisciola
- Björgólfur Thor Björgólfsson
- Blac Rabbit
- Black Monday (1987)
- Black sea bass
- Black Thought
- Blackjack
- Blackpink
- Blackswan
- Blaengarw
- Blandine Dancette
- Blaylock Atherton
- Blend (textile)
- Blo.Torch
- Blob detection
- Blonsky
- Bloodchild and Other Stories
- Blue Cross (animal charity)
- Blue House (Hong Kong)
- Blues Jumped the Rabbit
- Bluntnose sixgill shark
- BMG Rights Management
- BMW X1
- BOAC Flight 781
- Bob Hawke
- Bob McCown
- Bob Norman (footballer)
- Bob Rupert
- Bob Stransky
- Bobby Gillespie
- Bobby Grubic
- Bobby Kris & The Imperials
- Bobsleds (Seabreeze)
- Boca Chica Key
- Bodhipathapradīpa
- Bogdan Gasiński
- Bojongsari, Purbalingga
- Bold Orion
- Bomb Jack
- Bond scheme (housing)
- Bonne of Luxembourg
- Boonton Branch
- Boot ROM
- Border Force
- Borderlands/La Frontera: The New Mestiza
- Boris Krivokapić
- Boris Policeband
- Born Free Foundation
- Borna Ćorić
- Borscht
- Boston Evening Traveller
- Botrychium lanceolatum
- Boudewijn Sirks
- Boulia Camel Races
- Boundaries of Hong Kong
- Bourgade
- Box-bed
- Boxwood Festival & Workshop
- Boycott
- BR-163
- Brabham BT55
- Brad Lander
- Bradshaw High School (Alabama)
- Brady Handgun Violence Prevention Act
- Bramma G
- Branch point
- Brand activism
- Branta thessaliensis
- Bravo Two Zero
- Breast implant
- Brenham, Texas
- Brian Dahle
- Brian McClendon
- Brickellia mosieri
- Brigham (film)
- Bright Morning Star
- Brine pool
- British Rail Class 57
- British slang
- Brittney Powell
- Brockhurst and Marlston House School
- Broken Down in Tiny Pieces
- Bronisław Malinowski
- Broodiness
- Brooke Allison (album)
- Brooke McCarty-Williams
- Brooke Simpson
- Bruchus pisorum
- Brusilovsky
- Bryan Trottier
- Bryce Pinkham
- BSS 01
- Bucharest Metro
- Buddhism in Oceania
- Buddy Holly
- Buffalo Hump
- Buffalo Police Department
- Buffy Wicks
- Bulbophyllum
- Bundeswehr Medical Academy
- Bunmi Banjo
- BUNT.
- Bureau of Justice Assistance
- Bureau Veritas
- Burgan SC
- Burial of Jesus
- Busby, East Renfrewshire
- Buschgroßmutter
- Bushra
- Business
- Bustamite
- Busytown Mysteries
- Buton
- Button
- Bwin
- Byford Secondary College
- C-squares
- C. W. Thamotharampillai
- C2orf72
- Cable (British band)
- CAD/CAM dentistry
- Cadence Design Systems
- Caenogastropoda
- Caesar Creek State Park
- Cairnryan Harbour
- Cairo International Airport
- Calabar Carnival
- Calamus draco
- Caligula (film)
- Callirhoe (mythology)
- Callogorgia
- Callum Ilott
- Calpain-2
- Calque
- Calyptotis ruficauda
- Cambridge Quantum Computing
- Camelots du Roi
- Cameron, North Carolina
- Camilla Nylund
- Campus of New York University
- Canadian Airways Congo
- Canadian Art Club
- Canalisation (genetics)
- Canarium ovatum
- Candace Bushnell
- Candidate of Law
- Candiru (spyware company)
- Canelo Álvarez vs. Sergey Kovalev
- Cannabis
- Canoeing at the 2020 Summer Olympics – Men's C-1 1000 metres
- Canoeing at the 2020 Summer Olympics – Women's C-1 200 metres
- Cantaloupe, Inc.
- Capability approach
- Capacity credit
- Cape Peninsula
- Cape Town
- Captain Flag
- Captaincy General of Santo Domingo
- Carbidopa
- Carbon dioxide removal
- Carbon neutrality
- Carbon-based life
- Carboprost
- Cardinal electors for the 1963 papal conclave
- Cardus
- Careful with That Axe, Eugene
- Carian language
- Carl Bernstein
- Carl Cameron
- Carl Daniels
- Carl Edvard Johansson
- Carl Ingold Jacobson
- Carlisle
- Carlos Cruz (boxer)
- Carlos Hathcock
- Carlos Maslatón
- Carlos Scott Lopez-Gelormino
- Carltheo Zeitschel
- Carmen Salinas
- Carnage (character)
- Caroline Blanco (pastor)
- Carousell (company)
- Carpathian Ruthenia
- Carrie Keranen
- Carrow Road
- Carsquare
- Carybdea
- Casa Bonita
- Cascade Funding
- Cash
- Casper Hoogenraad
- Caspian Sea
- Cassandra Kelly
- Castel Volturno
- Cat communication
- Catalina 320
- Catalone
- Catania–Fontanarossa Airport
- Catapult international
- Catenoleimus
- Catholic Church in Argentina
- Cauliflower (film)
- Cave of Dogs
- Cayman Islands Classic
- Cecil Hoskins
- Celebrity Jeopardy! (Saturday Night Live)
- Cell fate determination
- Cellcast Group
- Cellular agriculture
- Celtic harp
- Censorship in New Zealand
- Cent (music)
- Center for a New American Security
- Center for World Indigenous Studies
- Centraalstaal
- Central Park Casino
- Central University of Tamil Nadu
- Centum Investment Company
- Cerebral circulation
- Cerejais (Alfândega da Fé)
- Ceremonial stone landscape
- Ces soirées-là
- Chachar
- Chachchon Ratanarak
- Chad Willett
- CHAdeMO
- Chaetarthriinae
- Chaetodontoplus meridithii
- Chaetomiaceae
- Chamcook, New Brunswick
- Chandu Lal
- Chanho
- Chanyu
- Chaouia (Morocco)
- Chapelle Saint-Louis de Carthage
- Charaxes cedreatis
- Charaxes epijasius
- Charaxes protoclea
- Chariot racing
- Charisma
- Charlene (singer)
- Charlene White
- Charles & Eddie
- Charles E. Slayback
- Charles II, Count of Alençon
- Charles K. Kao
- Charles Lapworth
- Charles Schwertner
- Charles Trefusis, 19th Baron Clinton
- Charles-François Dupuis
- Charleston Coliseum & Convention Center
- Charley Crockett
- Charlotte Church
- Charlotte County, Virginia
- Charlotte Crosby
- Chastleton House
- Chateau La Coste / Villa La Coste
- Chatham Cup
- Cheadle Hulme
- Cheddar Man
- Cheeky Vimto
- Chemtrails over the Country Club
- Chen Po-wei
- Chennai Rajdhani Express
- Chennupati Jagadish
- Cherifian Anthem
- Chernoff bound
- Cheryl Boone Isaacs
- Cheryl D. Miller
- Chesapeake Biological Laboratory
- Chestnut-crowned gnateater
- Chet Doxas
- Chet Hanks
- Chevrolet Venture
- Chevron (insignia)
- Cheyne Gallarde
- Chhattisgarh Lok Adalat
- Chiara Mio
- Chicago Film Society
- Chick Corea Featuring Lionel Hampton
- Chief Ministership of Shehbaz Sharif
- Chien Lee
- Child marriage in Cameroon
- Child prostitution in West Africa
- Childline India
- Chilean mockingbird
- Chill Out (KLF album)
- China Railways Type 24 rolling stock
- Chinese auspicious ornaments in textile and clothing
- Chinese drywall
- Chinese folk religion
- Chip 'n Dale: Rescue Rangers (TV series)
- Chives
- Chloe McCarron
- Chloroxylenol
- Chmod
- Choelquoit Lake
- Choir of King's College London
- Chokha
- Chor Bazaar (2022 film)
- Chosen Effect
- Chris Blattman
- Chris Duarte (basketball)
- Chris Geidner
- Chris McNutt
- Chris Smith (filmmaker)
- Christian Convery
- Christian mortalism
- Christian Onoh
- Christian S. Jensen
- Christianity in Nigeria
- Christianity in Xinjiang
- Christine Lagarde
- Christophe Chaptal de Chanteloup
- Christopher Alao-Akala
- Christopher Henney
- Christopher Joll
- Christopher Newport University
- Christopher Rowe (author)
- Chubb Classic
- Chukwuma Michael Umeoji
- Church of God Mission International
- Churi
- Chutupalu
- CIC (gene)
- Cicadomorpha
- Cinémathèque de Bretagne
- Cipher Department of the High Command of the Wehrmacht
- Circle of Life Foundation
- Circle of Pagan Tradition
- Circular economy
- Cirrhilabrus cenderawasih
- Cirrhilabrus cyanogularis
- Cirrhilabrus finifenmaa
- Cities for Climate Protection program
- Cities in the Book of Joshua
- Citroën Type C 5HP
- City Lights Bookstore
- City of Derry Airport
- Civil peyniri
- Claes Cronqvist
- Clafoutis
- Claire Celsi
- Claire Monis
- Clan Macrae
- Clan Wallace
- Clare O'Neil
- Clarence Dick
- Clark Olofsson
- Classic book
- Classical demography
- Classification of demons
- Claudia Blum
- Claudia Doumit
- Clay mineral X-ray diffraction
- Cleanroom
- Clemens van Blitterswijk
- Clément Novalak
- Cleve Cartmill
- Climate change and cities
- Climate change vulnerability
- Clips (software)
- Cloud rat
- Clúa
- Cluster of Excellence Frankfurt Macromolecular Complexes
- Clutha District Council
- Clyde C. Holloway
- Cobalt
- Code of Ethics (band)
- Code of law
- Codeine Velvet Club
- Codex Basilensis A. N. IV. 2
- Codpiece
- Coeur d'Alene Reservation
- Cognitive therapy
- Cogstate Brief Battery
- Coiba spinetail
- Coin collecting
- Cold noodles
- Colectivo Coffee Roasters
- Colin Morrison
- Colleen Fitzgerald
- College of Engineering and Physical Sciences (University of Guelph)
- College of Engineering, Pune
- Coloma, California
- Colonial Hotel (Seattle)
- Color Graphics Adapter
- Color theory
- Colton Brown
- Comanagement in Canada
- Commercial animal cloning
- Common law offence
- Community structure
- Compact Ignition Tokamak
- Compagnie d'Arc d'Amiens
- Compagnie des bauxites de Kindia
- Comparison of karate styles
- Compressed air car
- Computational law
- Computer mouse
- Computer-mediated reality
- Concerned for Working Children
- Concert band
- Condensed matter physics
- Conflagration
- Connellsville Area School District
- Conservation biology
- Conspicuous consumption
- Constant scalar curvature Kähler metric
- Constantinos Caratheodory (1802–1879)
- Constitution of Mexico
- Construction 3D printing
- Consular missions in Hong Kong
- Contact manager
- Contemporary circus
- Continuous-variable quantum information
- Convent and church of Saint Francis, Pontevedra
- Convention of 1836
- Convention on the Protection and Promotion of the Diversity of Cultural Expressions
- Conversica
- Convex optimization
- Cookie Run
- Cookware and bakeware
- Coordination of Azawad Movements
- Copenhagen
- Copyright law of Japan
- Coral bleaching
- Cordlife
- Coreboot
- Corey Frazier Ellis
- Corinne Brinkerhoff
- Cormac Ó Ceallaigh
- Corporate governance
- Corporate sociopolitical activism
- Corpus of Contemporary American English
- Corrado Guzzanti
- Correctional Training Facility
- Corys TESS
- COSCO Shipping Lines
- Cossula coerulescens
- Costa Ricans
- Cottage cheese
- Council House Fight
- COVID-19 pandemic in Kenya
- COVID-19 pandemic in New York (state)
- Coworking
- Coyote
- Craig Sauer
- CredibleMeds
- Credit card fraud
- Cremat
- Criminal cases against Yulia Tymoshenko since 2010
- CRISPR/Cas Tools
- Cristián Zavala
- Cristina Rodríguez (noble)
- Critical incident stress management
- Croquet Association
- Cross of Lorraine
- Cross-presentation
- Crossroads Mall (Oklahoma)
- Crotale (missile)
- Crowngate Shopping Centre
- Cuisine of Liguria
- Culm Davy
- Cultural depictions of Otto I, Holy Roman Emperor
- Cultural manager
- Cultured meat
- Cumulative learning
- Cunt
- Currency Wars
- Currie Graham
- Cursillo
- Cutis verticis gyrata
- Cuttack Municipal Corporation
- Cyberpunk
- Cycles (song)
- Cyclone Yasa
- Cylindropuntia imbricata
- Cyndi Lauper
- Cysticercosis
- Cytokinesis
- Czarni Sosnowiec
- D. Brenton Simons
- Da (play)
- Dabo kolo
- Dacia Logan
- Daejong of Goryeo
- Dagmar R. Henney
- Dakini
- Dakra, Ranchi
- Dál Riata
- Dale Hodges Park
- Dalton Philips
- Dan Fike
- Dance Fever (album)
- Dancing with Myself (TV series)
- Daniel Chamier
- Daniel Everett
- Daniel Florêncio
- Daniel Siboni
- Daniel Sims
- Daniela Braga
- Danielle Macdonald
- Danny Kerry (field hockey)
- Danny Pudi
- Dante R. Chialvo
- Dara Nusserwanji Khurody
- Darcy's law
- Darfo Boario Terme
- Darius van Driel
- Darrell Green
- Dartfish (company)
- Daryl F. Mallett
- Dashcam (horror film)
- Date and time notation in Ireland
- Dathan Ritzenhein
- Dave Lowe (atmospheric scientist)
- Dave Rowntree
- David Atienza
- David Bangs
- David Berliner (anthropologist)
- David Brophy (historian)
- David Caldwell (American football executive)
- David Carr (wrestler)
- David Carter (industrial designer)
- David Chang
- David Corke
- David Crane (politics)
- David Elbaz
- David Ennals, Baron Ennals
- David Freed (author)
- David Green (social entrepreneur)
- David Helpling
- David Kirkpatrick (producer)
- David Kohler
- David L. Fulton
- David Ludwig (composer)
- David McNally (academic)
- David Meyerowitz
- David Pritchard (chess player)
- David Ross (actor)
- David Smith (Ontario MPP)
- David Swanson
- David Turk
- David Vorp
- David Wilson, Baron Wilson of Tillyorn
- David Wynn Miller
- David Zaslav
- Davis R. Ruark
- Davros
- Day by Day (1945 song)
- Day of Infamy speech
- Day of Remembrance (Japanese Americans)
- Dayananda Saraswati (Arsha Vidya)
- DC Universe
- De architectura
- De Havilland Canada DHC-6 Twin Otter
- Dead Island
- Dead or Alive 5
- Deaerator
- Dearborn Heights, Michigan
- Death and state funeral of Omar Bongo
- Death by China
- Debye sheath
- December 2020 Wukro massacre
- December Songs
- Decius
- Deep Foods
- Deep Purple in Rock
- Deep Sleep
- Deepak Kapur
- Deer hunting
- Def Con Dos
- Definition of music
- Deforestation in Costa Rica
- Dehab Faytinga
- Deke DeLoach
- Delage D12
- Delhi Milk Scheme
- Delhi Sultanate
- Deluxe Paint
- Demographics of Uzbekistan
- Demographics of the United Kingdom
- Dendrochronology
- Dene Magna School
- Denis Brott
- Denise Trauth
- Denitrobacterium
- Deniz Gölü
- Dennis Dragon
- Dennis Polonich
- Dental hygienist
- Denver and Rio Grande Western Railroad Depot (Grand Junction, Colorado)
- Department of Homeland Security Office of Inspector General
- Depp v News Group Newspapers Ltd
- Derby Porcelain
- Derek Ferguson
- Desaer ATL-100
- Deschênes Commission
- Desert Tech MDR
- Desidustat
- Desmos (graphing)
- Despicable Me 2
- Despicable Me 3
- Dessa
- Destin–Fort Walton Beach Airport
- Destination Earth (European Union)
- Destiny (streamer)
- Detroit and Pontiac Railroad
- Detroit-style pizza
- Developmental psychopathology
- Deviance (sociology)
- Devin Bronson
- Devon (sausage)
- Dex Dexter
- Dhruvi Acharya
- Dhwani Gautam
- Dialectica interpretation
- Diane Abbott
- Diane Awerbuck
- Diane Kruger
- Diary of a Wimpy Kid (book)
- Dichloromethane
- Dick Whittington and His Cat
- Die Kur
- Diffuse axonal injury
- Diffuse reflectance spectroscopy
- Digital humanities
- Digital recording
- Digital subtraction angiography
- Diketopyrrolopyrrole dye
- Dilip Wedaarachchi
- Dilithium
- Dimas Drajad
- Dimitris Drikakis
- Dinerth Castle
- Dinesh Das
- Diodato
- Dioscorea
- Diphenylbutadiyne
- Direction générale du Trésor
- Dirndl
- Discrete group
- Disease-modifying osteoarthritis drug
- Dish Network
- Disney Twisted-Wonderland
- Dissolved gas analysis
- District Grocery Stores
- Diversity in young adult fiction
- Diving bell spider
- Division of Maribyrnong
- Divje Babe flute
- Dmitry Galkovsky
- Dmytro Voronovskyi
- DNA methylation
- DNA supercoil
- DnaA
- DNAPrint Genomics
- DNF (software)
- Doctor Sleep (2019 film)
- DocuDays UA
- Dodge Ridge Ski Area
- Dodge T-, V-, W-Series
- Dodie Heath
- Dolapo Badmos
- Dolmen
- Dombeya
- Domestic flight
- Domestic realism
- Dominance hierarchy
- Dominant white
- Dominion Atlantic Railway
- Don Goldstein
- Don Juan of Persia
- Don Scott (Virginia politician)
- Don Vesco
- Donald Henderson (writer)
- Donald M. Blinken
- Donald S. Murray
- Donald Tusk
- Donetsk
- Donny McCaslin
- Dorćol
- Doreen Hawkins
- Dorothy (given name)
- Douai
- Double-strand break repair model
- Doug Hickey
- Doug Ose
- Dougall Carmichael
- Douglas W. Petersen
- Dowell, Illinois
- Downburst
- Dracula (color scheme)
- Drag reduction system
- Dragan Radenović
- Dragon Ball Z
- Dragon Ball Z: Budokai 3
- Dragon's Back Race
- Dragonfly
- Drain-waste-vent system
- Dredge No. 4
- Drew Arellano
- Driss Chraïbi
- Drobo
- Drona Prakash Rasali
- DTaP-IPV vaccine
- Duchy of Estonia (1219–1346)
- Dudley Metropolitan Borough Council
- Dugald Stewart Monument
- Duke Law Journal
- Duke of Berry
- Dundas, New South Wales
- Dunedin Fringe Festival
- Dunhuang
- Dunno Y2... Life Is a Moment
- Dutch cuisine
- Dutch Maiden
- Dylan Cramer
- Dyspanopeus texanus
- E-Daakhil
- E-Girls Are Ruining My Life!
- E. E. Smith
- E. Otis Charles
- Eagle of Delight
- Early Indian epigraphy
- Easley High School
- East Cleveland City Schools
- East German uprising of 1953
- East Greenland Ice-Core Project
- East L.A. walkouts
- East Side Access
- East Turkestan
- Eastern Desert
- Eastern Group of Painters
- Eastern world
- Eastmain
- Eau Claire, Wisconsin
- EBX Group
- Eckart Marsch
- Economic Geography (journal)
- Economic history of Venice
- Economic reforms under Peter the Great
- Economics of defense
- Economy of Kosovo
- Economy of Nigeria
- Economy of the Arab League
- Ectrodactyly-polydactyly syndrome
- ECU Health
- Ed Bickert
- Ed Leigh
- Ed Wood
- Eddie Durham
- Eddie Mabo
- Eden Electronics
- Edgar Perez
- Edmonton Journal
- Ednorah Nahar
- Edsel
- Eduardo Praes
- Educate Girls
- Education in Japan
- Education in New Zealand
- Edward Altman
- Edward Drinker Cope
- Edward Vance
- Edwards Davis
- Edwin Andersson
- Edwin William Brunsden
- Effective altruism
- Effects of climate change on ecosystems
- Effects of climate change on plant biodiversity
- Egidius Kwartet
- Eileen Gray
- Ekkathat
- Ekşi Sözlük
- El Líbero
- Elaine Chuli
- Elaine Shemilt
- Elam Ending
- Elbow
- Electric blanket
- Electric motorsport
- Electromagnetic compatibility
- Electronic skin
- Electronic waste in New Zealand
- Elektra (2010 film)
- Elena Krawzow
- Elijah P. Marrs
- Elis Paprika
- Elisabeta Polihroniade
- Elite Dangerous
- Elite Model Management
- Eliza Yonge Wilkinson
- Elizabeth Arhin
- Elizabeth Bugie
- Elizabeth Rowell Thompson
- Elizabeth Tan (singer)
- Elke Solomon
- Ellen Gallagher
- Elliot James Mulhern
- Elliptic-curve cryptography
- Elly Tanaka
- Elly Wamala
- Elm Bank Horticulture Center
- Elmer Valentine
- Eloi Muhoranimana
- ELOVL4
- Elves in fiction
- Elymian language
- Elyse Cherry
- Emanuele Ferrari
- Embassy of Spain, Washington, D.C.
- Emerich Coreth
- Emily LeBaron
- Emirates Airline Festival of Literature
- Emma Bolger
- Emma Louise Ashford
- Emmelie de Forest
- Empire Earth (video game)
- Empress Zhang (Liu Shan's first wife)
- Enalapril
- Encore: Movie Partners Sing Broadway
- Endolith
- Endometrium
- Energy in Italy
- Energy usage of the United States military
- English defamation law
- English determiners
- English prepositions
- English Renaissance theatre
- Enitan Badru
- Enjoy CCCP
- Enough (film)
- Enrique K. Razon
- Enrique Krauze
- Entertainment Weekly
- Enthalpy
- Enthemonae
- Enugu State
- Envirome
- Environmental policy of the Joe Biden administration
- Environmental Technology Verification Program
- Enzo Avitabile
- Eostangeria
- EPCOT (concept)
- Epidemiology of HIV/AIDS
- Epigenetics of autoimmune disorders
- Epiphanie Mukashyaka
- Episcopal Conference of Latin America
- Epitaph (song)
- EpiVacCorona
- Equestrian statue
- Equus (genus)
- Erasmus MC
- Eric Litman
- Éric Zemmour
- Erica comorensis
- Erica James
- Erik King
- Eriksberg Crane
- Eritrean Liberation Front
- Erkenci Kuş
- Ernest Fahmy
- Ernst & Young
- Esigodini
- ESMoA
- Esperance Branch Railway
- Essex Street
- Estelle Asmodelle
- Estuary
- Etaoin shrdlu
- Etche
- Ethereum
- Ethnic Chinese in Panama
- Ethnic groups in the United Kingdom
- Ethnomethodology
- Eucharistic congress
- Eucharistic miracle
- Eugene G. Sander
- Eugène Ketterer
- Euphrasia striata
- Eupithecia distinctaria
- European Foundation for Democracy
- European Network for Accreditation of Engineering Education
- Europeanists
- Europop
- Eurovision Song Contest
- EURYI
- Evacuation immediate
- Evans Blue
- Ever Given
- Everett C. Olson
- Evi Touloupa
- Evo Morales grounding incident
- Evviva Maria
- Exactly Right Podcast Network
- Excellence and equity
- Excise
- Exeed VX
- Exile of Ovid
- Existentialism Is a Humanism
- Expansion of the A-League Men
- Expatriate Party of New Zealand
- Experimental psychology
- Expression quantitative trait loci
- Extradition
- F1 Race
- Fabaceae
- Faber Drive
- Fabiana Barreda
- Fabio Mancini
- Factions in the Democratic Party (United States)
- Facundo Tello
- Fairline Boats
- Fairuz
- Faith and Order Commission
- Faithfulness
- Falkirk Grahamston railway station
- Fall of the Western Roman Empire
- Falling in Reverse
- Falsification of history in Azerbaijan
- Fanny Bullock Workman
- Farewell Spit Lighthouse
- Farmacias Moscoso
- Fasinumab
- Fat Leonard scandal
- Fatima bint Mubarak Al Ketbi
- Fault gouge
- Faxon Atherton
- FC Barcelona B
- Feature film
- Features of the Opera web browser
- February 2021 Wukro massacre
- Federal Ministry of Agriculture and Rural Development
- Federal Ministry of Health (Nigeria)
- Fédération Cynologique Internationale
- Feminist theory
- Feng shui
- Fenshen
- Fiber Patch Placement
- Fiddletown AVA
- Fiji
- Filial piety
- FINA
- Financial economics
- Financial technology
- Finley Roundhouse
- Finnish Defence Forces
- Fire and Emergency New Zealand
- First Amendment to the United States Constitution
- First Chechen War
- First Crusade
- First Grammatical Treatise
- First Horizon Bank
- First Montreal biker war
- Flagstaff War
- Flaming sword (mythology)
- FLARM
- Flix Interactive
- Flood v. Kuhn
- Florence Cane
- Florence Seriki
- Flue gas
- Flunitrazepam
- Flybmi
- FN 5.7×28mm
- Foire Internationale d'Art Contemporain
- Foley catheter
- Fomget Gençlik ve Spor
- FootGoal.pro
- Forcing graph
- Forest Heights Collegiate Institute
- Forestar Group
- Forever Love (Color Me Badd song)
- Former people
- Formula E
- Forrest (advertisement)
- Fort Taurege
- Fort Wagner
- Fortress of Klis
- Fortune Head
- Foster gang
- Foucaucourt Aerodrome
- Foundation for Political Innovation
- Four Seasons Hotel San Francisco at Embarcadero
- Framework Computer
- Fran Logan
- Frances Fletcher
- Frances Upton
- Francesca Michielin
- Francis Egerton, 1st Earl of Ellesmere
- Francis Sheehy-Skeffington
- Francis Sultana
- Frank Geyer
- Frank J Kelly
- Frank Mrvan
- Frankfurt School of Finance & Management
- Frankincense
- Franklin Aigbirhio
- Franklin's grouse
- Fred Buljo
- Fred De Palma
- Fred Rickaby
- Fred Shero
- Frédéric Bérat
- Frederica von Stade
- Frederick Coffay Yohn
- Free black people in Jamaica
- Free variation
- French nobility
- French occupation of Moscow
- French press
- FreshDirect
- Freshwater whitefish
- Fridolin Dallinger
- Friends Will Be Friends
- Frozen orbit
- FU Orionis
- FU Orionis star
- Fukue Airport
- Fullerton India Credit Company Limited
- Functional boxplot
- Fundraising to help Ukraine during 2022 Russian invasion of Ukraine
- Fusion power
- Future Lover -Mirai Koibito-
- FWA Footballer of the Year
- G1 (website)
- Gabriel Segal
- Gaijin Entertainment
- Gaizka Mendieta
- Gale Robbins
- Galearis rotundifolia
- Gall–Peters projection
- Gallanosa family
- Gallon (Scots)
- Gamaredon
- Game Party Champions
- Gamma Crateris
- Ganapathy, Coimbatore
- Ganga-Jamuni tehzeeb
- Gangubai Kathiawadi
- Ganweriwal
- Garden of the Gods
- Garden Village, Wrexham
- Gardiner Expressway
- Garshom Awards
- Gary Dell
- Gary K. Michelson
- Gas chromatography-olfactometry
- Gas-discharge lamp
- Gauss–Kronrod quadrature formula
- Gautam Singhania
- Gavin Arthur
- Gaza Sky Geeks
- Gebir (poem)
- Geelong Football Club
- GEH statistic
- Gelenbevi Ismail Efendi
- Gemini (Les Spann album)
- Gender neutrality in Spanish
- Gender-equality paradox
- Gene Ormsby
- General Certificate of Secondary Education
- General strike
- Generalized Lotka–Volterra equation
- Genghis Khan
- Genmab
- Gentoo Linux
- Geoffrey Atherden
- Geoffrey Warren
- Geology of Cape Verde
- Georg Cantor
- George Bell (bishop)
- George Biddle
- George Blackburn (footballer, born 1899)
- George Carr (footballer)
- George Eaton (journalist)
- George Formby Society
- George Giatsis
- George Hudleston Hurlstone Hardy
- George Jacob
- George Johanson
- George K. Arthur
- George Mason III
- George Noble Jones
- George Ogilvie-Forbes
- George Roden
- George Saintsbury
- George Summerbee
- George Van Horn Moseley
- Georges Vanier
- Georgetown Day School
- Georgia State Route 243
- Gerald B. Helman
- Gerald R. Ford-class aircraft carrier
- Gerben Wiersma
- Gerhard Doerfer
- German colonial empire
- German Empire
- German identity card
- German wine classification
- Gerry (company)
- Gertrude Vanderbilt Whitney
- Get Gorgeous
- Get Loaded and Fuck
- Getter
- Ghomaras
- Ghostin (song)
- Ghulam Nabi Kashmiri
- Ghulat
- Giammarco Menga
- Gianni A. Sarcone
- Gianni Rivera
- Gibson (guitar company)
- Gigantspinosaurus
- GIGN
- Gijs van Hall
- Gina Chua
- Ginestra Bianconi
- Gino D'Acampo
- Gio Black Peter
- Giorgio Parisi
- Giovanni Galeazzo Serbelloni
- Giridih Municipal Corporation
- Gjekë Marinaj
- Glen Allen, Virginia
- Glen Campbell
- Global Alliance for Improved Nutrition
- Globiceps
- Gloria DeHaven
- Glory of the Seas (clipper)
- Glossary of bowling
- Glossary of cycling
- Glucuronolactone
- GNU Emacs
- Gnutella
- Go Go Burunyanman
- Goa State Consumer Disputes Redressal Commission
- Godiya Akwashiki
- Godmanchester
- Goethe-Institut
- Gökhan Avcıoğlu
- Gondophares
- Gondrani
- Gongmin of Goryeo
- Gonna Make You Sweat (Everybody Dance Now)
- Gonzaga Bulldogs men's basketball
- Gonzalo Curiel (composer)
- Goodnight Sunrise
- Google Hangouts
- Gopachal rock cut Jain monuments
- Gordon Jump
- Gorreth Namugga
- GoTV (Austrian channel)
- Government of Brevard County, Florida
- Government of Hong Kong
- Governor of Massachusetts
- GovExec
- GQM
- Graeme Bell
- Graeme Horne
- Graham Bailey
- Grand Coalition for Fiji
- Grand theory
- Grange Thistle FC
- Grant Avenue
- Grant Hanley
- Grant Horsfield
- Granville Anderson
- Grassland
- Gravity (2013 film)
- Great Belt Fixed Link
- Great Lakes Myth Society
- Greece–Portugal relations
- Greece–Turkey relations
- Green darner
- Green Party of Malaysia
- Green Party of Nova Scotia
- Green Propulsion
- Green River (Kentucky)
- Green-collar worker
- Greensboro massacre
- Greg Abbott
- Gregory Lawrence Eyink
- Greyhound racing in the United Kingdom
- Gridlink Interconnector
- Grief
- Grimmish
- Grinder's Switch, Tennessee
- Grinspoon
- Grothendieck's connectedness theorem
- Group R
- Growing Up Gotti
- GS Group
- GS Yuasa
- Guajataca, San Sebastián, Puerto Rico
- Guajataka Scout Reservation
- Guanbi policy
- Gudivada
- Guido Caldarelli
- Guillaume de Ramel
- Gujarat Lok Adalat
- Gummo Marx
- Gun politics in the United States
- Gundam Build Divers Re:Rise
- Gunnar Myrdal
- Günther von Scheven
- Güssing
- Gustav Halmhuber
- Gustine, California
- Guthrie Govan
- Gyða Valtýsdóttir
- Gyrovector space
- Haakon Forwald
- Habele
- Hachijō grammar
- Hachimanmae Station (Wakayama)
- Hackers on Planet Earth
- Had Enough 2023
- Hadavand tribe
- Hadith studies
- Hafize Sultan (daughter of Selim I)
- Hafsa Sultan
- Hagoth
- Hakeem Jeffries
- HAL HJT-36 Sitara
- Halewood International
- Hall Green
- Halls Gap
- Hamatonbetsu, Hokkaido
- Hambantota
- Hamish Gray, Baron Gray of Contin
- Hammond Pond Parkway
- Hammoudi ibn Ibrahim
- Hanley Castle High School
- Hanna-Barbera
- Hannah Lash
- Hans Frank
- Hans von Ohain
- Hans-Heinz Bollmann
- Hans-Joachim Horrer
- Haplogroup K-M9
- Hardee County, Florida
- Hardwicke Holderness
- Harley Quinn
- Harlow Town Park
- Harmony House (Dayglow album)
- Harold Darke
- Harran in the Bible
- Harriet Monroe
- Harrogate High School
- Harry Pratt Judson
- Harry Styles
- Hartley Bay Indian Band
- Harvard (name)
- Hasan al-Qahir
- Hassan II of Morocco
- Hassan Zia
- Hassanat Akinwande
- Hassum
- Hastula hastata
- Hatayspor (women's football)
- Hate speech laws in Denmark
- Hatia
- Hatta, United Arab Emirates
- Hauteville-Lompnes
- Havelock Nelson (writer)
- Havstein Church
- Hawke's Bay Regiment
- Hazel English
- Hazit HaAm
- HD 96167 b
- HD Radio
- He Is Legend
- Head louse
- Head Start (program)
- Health consequences of the Deepwater Horizon oil spill
- Health Policy and Technology
- Heart on Snow
- Heart scarab
- Heather Carroll
- Heather Nova
- Heather Stefanson
- Heaven Benchmark
- Hector the Tax Inspector
- Héctor Zamora
- Hedonic damages
- Heidi Thomas
- Heinz Ebert
- Helen Esuene
- Helen Russell (writer)
- Helen Yarmak
- Hellenic State (1941–1944)
- Henderson, North Carolina
- Hēni Te Kiri Karamū
- Henichesk Raion
- Henk Jan de Jonge
- Henning Melber
- Henri Milne-Edwards
- Henriettea
- Henry Arnold Cumberbatch
- Henry B. Mattingly
- Henry Charlton Beck
- Henry M. Crane
- Henry T. Yang
- Heracleum (plant)
- Heraclitus
- Herbert Philbrick
- HERC1
- Here Be Monsters (Ten album)
- Here to Love
- Hereford General Hospital
- Herm
- Hermann Kaufmann
- Heron Island (Queensland)
- Hesperomyces
- Heteropteryx
- Heterosexuality
- Hewittia malabarica
- Hexamilion wall
- HFStival
- Hickam's dictum
- High Performance Computing Modernization Program
- High School for Gifted Students, Hanoi University of Science
- High Speed 2
- High Wycombe F.C.
- High-altitude nuclear explosion
- High-speed rail
- Highway Police (Bangladesh)
- Hilandar Fragments
- Hildegard of the Vinzgau
- Hiligaynon people
- Hillview, Singapore
- Himachal Pradesh Lok Adalat
- Himiltrude
- Hind al-Mutayri
- Hindu Mahasabha
- Hippocleides
- Hiram Collins Haydn
- Hiromi Kawakami
- Hirondina Joshua
- Historic paint analysis
- Historicity of the Homeric epics
- History of Backward Caste movement in Bihar
- History of cartography
- History of concubinage in the Muslim world
- History of music
- History of neurology and neurosurgery
- History of Nur-Sultan
- History of science and technology in Africa
- History of software engineering
- History of the Geelong Football Club
- History of the Jews in Colombia
- History of the Jews in Zambia
- History of Thornton Heath
- History of women in the United States
- History of Zambia
- HMS Bideford (1695)
- HMS Port Mahon (1711)
- HMS President (1650)
- HMS Royalist (89)
- HMS Ruby (1652)
- Hnat Domenichelli
- Ho Jong-suk
- Hoagy Carmichael
- Hohenheim Gardens
- Holland Coffee
- Hollis Latham
- Hollow atoms
- Hollywood Waste
- Hom Nguyen
- Home Insurance Building
- Home Minister (Andhra Pradesh)
- Home Sweetie Home
- Homejoy
- Homelessness in South Africa
- Homo floresiensis
- Homo rhodesiensis
- Homosexuality in medieval Europe
- Honey (Robyn song)
- Honky-tonk
- Hörður Sveinsson
- Horizon West, Florida
- Horizontal gene transfer
- Horn clause
- Hornell Traction Company
- Horse Island, New York
- Horse racing in Great Britain
- Horse slaughter
- Hoshiarpur Municipal Corporation
- Hospitalitermes
- Hot Springs Peak (California)
- Hou Jingjing
- House cricket
- House on the Rock
- House wren
- How Bizarre (album)
- How Life Imitates Chess
- How to Let Go
- Howard J. Buss
- Howard Johnson's
- Hoyt Hilsman
- Hsiao-Wuen Hon
- Hsp90
- Hubba Hubba Revue
- Huda Hussein
- Huda Zoghbi
- Huffy
- Hugh Cornwell
- Hugh LaFollette
- Hulme
- Hulu Langat District
- Hulvey
- Human capital
- Human Systems Integration
- Human–artificial intelligence collaboration
- Hümaşah Sultan (daughter of Şehzade Mehmed)
- Humboldt: The New Season
- Humid continental climate
- Humidifier
- Hunga Tonga–Hunga Ha'apai
- Hunter Walker
- Huqf Supergroup
- Hussein Suleiman Abu Saleh
- Hutt Valley Line
- Huy, Germany
- Hwang Jang-yop
- Hybodus
- Hybrid martial arts
- Hydrosaurus celebensis
- Hygienic Dress League
- Hypothyroidism
- Hypselodoris sagamiensis
- Hyundai Ioniq
- I Cover the Waterfront (song)
- I Shall Be Free
- I Should Be Proud
- I Told Sunset About You
- I Troop Carrier Command
- I. F. Stone
- I386
- Ian Garrison
- Ian King (Australian cricketer)
- Ian Rankin
- Ibeno
- Iberian wolf
- Ibi, Taraba State
- Ibikunle Amosun
- Ibiza wall lizard
- IBM RPG
- Ibn Khaldun
- Ibrahim Ali (politician)
- Ibrahima Konaté
- IC Holding
- Icarian Sea
- ICD-11
- Ice District
- Ice diving
- Ice II
- Ice IV
- Ice road
- Ida Lorentzen
- Idriss Aberkane
- IEEE Electron Devices Society
- Ignatius Aphrem I
- Ignite (K-391 song)
- Igor Moiseyev Ballet
- II-VI Incorporated
- IIHF Development Cup
- Iko Uwais
- Il canto sospeso
- Ilia Balinov
- Ilija Vukićević
- Ilyas Khan
- Ilze Juhansone
- Imagine (1972 film)
- Imani Jacqueline Brown
- Imbe clan
- Imidazole
- Immunity passport
- Immunoglobulin therapy
- Imran Rahman
- Inbal Segev
- Independent Catholicism
- Index of Repudiated Books
- Indian Accounting Standards
- Indian ghost movie
- Indian Space Research Organisation
- Indian Volley League
- Indian-Americans in the San Francisco Bay Area
- Individual development account
- Indo-European sound laws
- Indrani Pal-Chaudhuri
- Inducks
- Infantilization
- InfoChammel
- Ini Archibong
- Inland Empire (film)
- Inn of the Good Samaritan
- Inner Mongolian independence movement
- Insyde Software
- Integrated Forecast System
- Intel
- Interfaith Center for Sustainable Development
- International Beacon Project
- International Conference on Communications and Transit, 1921
- International Conference on Learning Representations
- International Day of Non-Violence
- International Decade for a Culture of Peace and Non-Violence for the Children of the World
- International Federation of Sports Chiropractic
- International Federation of the Phonographic Industry
- Internet Exchange of Puerto Rico
- Internet in Myanmar
- Intra Airways
- Ioannis Liritzis
- Iofina
- IQ Student Accommodation
- Ira Remsen
- Ira Silverberg
- Iran–Iraq border
- Irba
- Irene Below
- Irene Ovonji-Odida
- IRIS-T
- Irish road bowling
- Irit Ben-Abba
- Irmgard Schwaetzer
- Irogane
- Irving Bacon
- Iryna Dekha
- Isaac Foot
- Isaac Ives
- Isaac Robert Hurwitz
- Isaac Sacca
- Isaak Sigal
- Isabel Moctezuma
- Isabel P. Montañez
- Isabella (grape)
- Isetan
- Islam in Pakistan
- Islamic feminism
- Islamic Government
- ISM radio band
- Ismay Andrews
- Isomigrastatin
- Isonoura Station
- Isosorbide
- Israeli wine
- Issues relating to the iOS operating system
- Istanbul Waste Power Plant
- Isthmus (newspaper)
- István Türr
- Italian Opera Arias
- Italian Trade Agency
- Italian wall lizard
- Italy–Libya relations
- Itanus
- Iteris
- Ivan Đurđević
- Ivan Jablonka
- Ivan Nebesnyy
- Ivory A. Toldson
- Iwo Jima
- Iya Villania
- J. Fred Muggs
- J. Joseph Garrahy
- Jacek Gmoch
- Jack Delano
- Jack Dunn (footballer, born 1994)
- Jack Earl (Australian sailor)
- Jack Pardee
- Jack Scroby
- Jack Wilkie-Jans
- Jackson Davis (education official)
- Jacob
- Jacob (clothing retailer)
- Jacob Bixenman
- Jacob J. Blahnik
- Jacob Morris (activist)
- Jacob Salomon
- Jacoba of Settesoli
- Jacqueline Hinman
- Jacques Necker
- Jair Ribeiro
- Jakkar
- Jalal
- Jalandhar Municipal Corporation
- Jamal al-Din Qasimi
- James Arthur Frost
- James Bailey (British politician)
- James Barr (biblical scholar)
- James Blundell (physician)
- James Bond 007 (role-playing game)
- James Bone
- James C. Davenport
- James Dalessandro
- James Daly (actor)
- James E. Fleming
- James E. Owen
- James E. Robinson Jr.
- James Ellroy
- James Graham Phelps Stokes
- James Gray Bethune
- James Hews Bransby
- James M. Bower
- James Maas
- James Mackay (actor)
- James Madison University
- James R. Jones (Virginia politician)
- James Reeb
- James Stewart (artilleryman)
- Jamia Millia Islamia
- Jamie Grosshans
- Jan Joost van Cossiau
- Jan Stewer
- Jan-Lennard Struff
- Jane Ansah
- Jane Blalock
- Jane Christmas
- Janet Billig Rich
- Janet Evans
- Janet Jones
- Janet Mbugua
- Janet Yang Rohr
- Jangansa
- Jangdam
- Janice M. Morse
- Janick Gers
- Japan Air Lines Flight 351
- Japanese tea ceremony
- Japanese warship Asahi Maru
- Jason Arday
- Jawn
- Jaws (novel)
- Jay Hart (footballer)
- JCB Fastrac
- Jean de Montagu
- Jean-Frédéric Poisson
- Jean-Louis Dupont
- Jean-Luc Sandoz
- Jean-Paul van Poppel
- Jean-Philippe Bonardi
- Jean-Pierre Heynderickx
- Jeanie Finlay
- Jeff Colson
- Jeff Franklin
- Jeff Hamilton (drummer)
- Jeff Molina
- Jefferson King
- Jeffery D. Molkentin
- Jennie Carter
- Jennifer Hawkins
- Jennifer Ward-Lealand
- Jens Thoben
- Jeonggamnok
- Jeremiah J. Crowley
- Jeremy Roberts (politician)
- Jeremy W. Peters
- Jeri Taylor
- Jerome Isaac Friedman
- Jerry Buttimer
- Jerry Clayton
- Jerry DeCicca
- Jerry Garcia
- Jerry Greenfield
- Jessica Lange
- Jesuit (band)
- Jesza
- Jetsunma Ahkon Lhamo
- Jevrem Brković
- Jewish National Fund
- Jewish wedding
- Jim Hendren
- Jimmie Foxx
- Jimmy Brain
- Jimmy Dean
- Jimmy Piersall
- Jinamitra
- Jingu-kyo
- Jinxiang, Zhejiang
- Jiří Feureisl
- Jitan Ram Manjhi
- Jnanayasas
- Joanna Kaiser
- Joanna Sternberg
- Jodie Sweetin
- Joe Borowski (baseball)
- Joe Carter's 1993 World Series home run
- Joe Chill
- Joe Coffey (wrestler)
- Joe Gomez (footballer)
- Joe Louis
- Joe Pingue
- Joel Rush
- Joey Giardello
- Johan Cruyff Arena
- Johan Giesecke
- Johan Roijakkers
- Johann Baptist Kirner
- Johann Christoph Frauendorff
- Johann Sioly
- Johanna Hedva
- Johanna Pigott
- Johannes Bastiaan
- Johannes van Heerdt tot Eversberg
- John Aristotle Phillips
- John Armstrong Jr.
- John B. Goodenough
- John Bacon (sculptor, born 1777)
- John Barnie
- John Bozeman
- John Brebbia
- John Broadhurst
- John Buchan
- John Campbell, 2nd Marquess of Breadalbane
- John Gilpin (dancer)
- John Hopkins (actor)
- John L. Walters
- John M. Sharp
- John M. Stone Cotton Mill
- John McCullough (actor)
- John McGrath (Irish footballer)
- John Moore (British writer)
- John N. Miksic
- John Paul Eberhard
- John Ratzenberger
- John Ryan (rugby union, born 1988)
- John Samuel Eastwood
- John Savage Bolles
- John Shownmi
- John Smol
- John Stewart Bell Prize
- John Tudor Gwynn
- John Walsh (television host)
- John Ware (TV journalist)
- John Wood (actor, born 1946)
- John Woods (rugby league)
- Johnnie Walker
- Johnny Harris (journalist)
- Johnny Marr
- Joint Interagency Task Force West
- Jomo Kenyatta International Airport
- Jon Flint
- Jon Foreman
- Jon Seda
- Jonathan (1 Samuel)
- Jonathan Eybeschutz
- Jonathan Katz
- Jonathan Lemon
- Jonathan Rashleigh (1693–1764)
- Jonathan Stamler
- Jools Holland
- Jordi Casals i Ariet
- Jorge L. Contreras
- Jorge Tacla Sacaán
- Jorge Thielen Armand
- Joris Gnagnon
- José Antonio Laureano de Zubiría
- José Cassandra
- José Luis Oltra
- Josef Ludwig Reimer
- Josef Pieper
- Joseph Berger (neurologist)
- Joseph Colombo
- Joseph Heitman
- Joseph Hennis
- Joseph Ladapo
- Joseph Lindon Smith
- Joseph R. Fugett
- Joseph von Dedovich
- Joshua 7
- Joshua Bassett
- Journal of Cosmology
- Joy Hruby
- JR-BASIC
- Juan Pablo Montoya
- Juana Inés de la Cruz
- Jubilee Sailing Trust
- Judiciary of England and Wales
- Judy Teen
- Julia (Sesame Street)
- Julia Collins (Jeopardy! contestant)
- Julia Shaw (psychologist)
- Julian Agyeman
- Julian Carr (industrialist)
- Julianne Phillips
- Julius Maada Bio
- Jungmädelbund
- Junior Messias
- Jury selection in the United States
- Justin Packshaw
- Juvenile polyp
- K Sera Sera Limited
- K-means clustering
- K. A. Colorado
- K. V. Anoop
- K.M. Kundnani
- K.S.V. Roeselare
- Kada Station
- Kai Caves
- Kakogawa Station
- Kalinga language
- Kalingalinga
- Kalmar Nation, Lund
- Kaltix
- Kamadeva
- Kamerik-Mijzijde
- Kangarilla, South Australia
- Kangmei Pharmaceutical
- Kani tribe
- Kankipadu
- Kannada
- Kara Thrace
- Karabakh Revival Fund
- Karachi Nuclear Power Complex
- Karen Mulder
- Karesuando Church
- Karin Broberg
- Karin Hansson
- Karitiâna language
- Karl Offmann
- Karl Racine
- Károly Bezdek
- Kart racing game
- Karthikeya Murthy
- Karuvathoor Sreeramaswami Temple
- Kashinozaki Lighthouse
- Kashmira Chakraborty
- Kashmiri cuisine
- Kasia Al Thani
- Kasia Babis
- Kate Field
- Kate Kelly (feminist)
- Katharina Fritsch
- Katherine Teck
- Katherine Van Allen Grinnell
- Kathleen Parker
- Kathryn Bernardo
- Kathryn Zeiler
- Katja Schenke-Layland
- Katsuya Nomura
- Katya Rubia
- Kaumātua
- Kay Musical Instrument Company
- Kazem Sadegh-Zadeh
- Kazimiera Żuławska
- KDE Plasma 5
- KDWN
- Kedah
- Kedareswar Banerjee
- Keely Shaw
- Keiichi Tokuda
- Keith Chadwick
- Keith Holden
- Keith Thurman
- Kelly D. Holstine
- Kelly Sue DeConnick
- Kelsey Martin
- Kemi Adeosun
- Ken Babby
- Ken Hill (motorcyclist)
- Kendra Scott
- Kenickie
- Kenny Leon
- Kent
- Kerala Council of Ministers
- Kerala Lok Adalat
- Kerala Varma Pazhassi Raja (film)
- Kerma (physics)
- Kerry Wilkinson
- Kerstin Gabrielsdotter
- Kesteven and Grantham Girls' School
- Kettering, Maryland
- Kev Reynolds
- Kevin Barry
- Kevin Volpp
- Keyboard layout
- Khadg Singh Valdiya
- Khanzadas of Mewat
- Khatabala
- Khelari
- Khimki trolleybus
- Khin Nyunt
- Khloé & Lamar
- Khrenovina sauce
- Khursheed Bano
- KHWI
- Kick It in the Sticks
- Kidney (vertebrates)
- Kier-La Janisse
- Kigoma Rural District
- Killing of Atatiana Jefferson
- Kim Björkegren
- Kimbundu
- Kinematics of the cuboctahedron
- King Diamond
- Kings of Colosseum (2022)
- Kingsley Otuaro
- Kinsey Institute
- Kirby Reed
- Kirito (Sword Art Online)
- Kirsteen Tinto
- KISS principle
- Kiyoshi Oshikawa
- Klavierstücke (Stockhausen)
- Klebsiella pneumoniae
- Knock on Wood (Eddie Floyd song)
- Kōji Kakinuma
- Kongeparken
- Kontakte
- Koomey's law
- Koompassia excelsa
- Korean Armistice Agreement
- Koreatown
- Korova (record label)
- Koshkulak (mountain range)
- Košice International Airport
- Kostyantyn Doroshenko
- Kosuke Tsumura
- Kota Kinabalu International Airport
- Kozak (armored personnel carrier)
- Krešimir Zubak
- Krillin
- Kristof Hahn
- Kruidnoten
- Krzysztof Stanowski (journalist)
- Krzysztof Wołczek
- Kuehne + Nagel
- Kuhl irrigation (Himachal Pradesh)
- Kukuriraige -Sanxingdui Fantasy-
- Kundan Lal Gujral
- Kuniko Ozaki
- Kupamanduka
- Kupiansk Raion
- Kurkha
- Kurnool Municipal Corporation
- Kuroshio Current Intrusion
- Kurt Fiebig
- Kutaisi Auto Mechanical Plant
- Kuwait Trade Union Federation
- Kwame Quee
- Kynaston Reeves
- Kʼicheʼ people
- L.A. Witch
- La Bella
- La Bou
- La Revue du Monde Noir
- La vestale (Spontini)
- La Vibra
- Laas Dawaco
- Labour Party (Nigeria)
- Labullinyphia
- Laci Green
- Laddie John Dill
- Ladue, Missouri
- Lady Joan Fitzgerald
- Lady Lova
- Lady Sarah Chatto
- Laguerre polynomials
- Lake Champlain
- Lake Débo
- Lake Highlands
- Lake Turkana
- Lali González
- Lalla Rookh Museum
- Lamb Weston
- Lambda
- Lamin Fofana
- Lammas Green
- Lamniformes
- Lampropholis delicata
- Lançarote de Freitas
- Lancaster Mennonite School
- Language and gender
- Language shift
- Laohwangping Airfield
- Laois–Offaly (Dáil constituency)
- Lapung
- Lara Favaretto
- Larry C. Olsen
- Larry Krasner
- Larry Taunton
- Lasch-Tayaba
- Laser diffraction analysis
- Lasgush Poradeci
- LaShun Pace
- Last Cab to Darwin (film)
- Later Jin (Five Dynasties)
- Latin Extended-E
- Latium, Texas
- LaToya Sanders
- Latvian National Opera
- Laura (Giorgione)
- Laura Alho
- Laura Barton
- Laura Huey
- Laurel Goodwin
- Laurel Hurley
- Laurence D. Barron
- Laurence de Cambronne
- Laurentian Bank of Canada
- Laurie Menviel
- Laurie Pritchett
- Law enforcement in France
- Law enforcement in New York City
- Laxmaiah Manchikanti
- LAZ-695
- Le Livre de Seyntz Medicines
- Leachia pacifica
- Lead cycle
- Leadville, New South Wales
- Leanne Black-Johnson
- Learning through Landscapes
- Leave the Capital
- Ledo (company)
- Lee Chamberlin
- Lee Jae-myung
- Leeton, New South Wales
- Lefifi Tladi
- Left- and right-hand traffic
- Legless lizard
- Lego Builder's Journey
- Lego DOTS
- Leibniz Institute for Polymer Research
- Leitrim GAA
- Leland Sklar
- Lenkov-verse
- Leo Slezak
- Léon Lambert
- Leonard Chess
- Leonard McNally
- Leonard Morris (sheriff)
- Léonie de Bazelaire
- Leonie Tonel
- Leontopodium nivale
- Leptopelis montanus
- LeRoy Martin
- Letharia columbiana
- Letter-winged kite
- Lev Mekhlis
- Lewis Ormond
- Leyland Trucks
- LGBT history in Romania
- LGBT linguistics
- LGBT Mormon suicides
- LGBT rights in Nepal
- LGBT rights in Spain
- Lhtako
- Li Wei (linguist)
- Li'l Red Riding Hood
- Liberation Army of South Vietnam
- Life and Fate
- Lightbox
- Lightning Network
- Ligures
- Lim Kean Chye
- Lim1 transcription factor
- Limburg (Netherlands)
- Limited Too
- Lincoln County, Kentucky
- Linlithgow Palace
- Liolios Xirolivaditis
- Lionsgate Films
- Lipoprotein lipase deficiency
- Lisa Bielawa
- Lisa Helfend Meyer
- Lisa Wray
- Lisbon Metro
- List of accidents and incidents involving military aircraft (1980–1989)
- List of accidents and incidents involving the Douglas DC-4
- List of actors nominated for Academy Awards for non-English performances
- List of aircraft losses during the Russo-Ukrainian War
- List of airports in Albania
- List of AKB48 members
- List of Apache modules
- List of Arab League countries by GDP (PPP)
- List of asanas
- List of birds of Metropolitan France
- List of BMX bicycle manufacturers
- List of brothels in Nevada
- List of Carnegie libraries in Oregon
- List of CBRN warfare forces
- List of city nicknames in Michigan
- List of cloud types
- List of converts to Islam
- List of cooperatives
- List of cults of personality
- List of English words of Persian origin
- List of fictional artificial intelligences
- List of former Metro Local routes
- List of Friends and Joey characters
- List of fungi of South Africa – C
- List of Galician words of Germanic origin
- List of genocides by death toll
- List of grunge albums
- List of haunted highways
- List of High Commissioners of the United Kingdom to Tanzania
- List of high fantasy fiction
- List of hot springs in Japan
- List of King Crimson members
- List of last survivors of historical events
- List of lay Catholic scientists
- List of Los Angeles Angels seasons
- List of Main Street Programs in the United States
- List of mandolinists (sorted)
- List of military tactics
- List of Miraculous: Tales of Ladybug & Cat Noir characters
- List of My Hero Academia characters
- List of named passenger trains of Indonesia
- List of National Football League records (individual)
- List of newspapers in Puerto Rico
- List of nicknames of European royalty and nobility: B
- List of ovens
- List of police-related slang terms
- List of roads in Madagascar
- List of Roblox games
- List of Roger Woodward's principal first performances, recordings, and publications
- List of Roman Catholic bishops of Mostar-Duvno
- List of Royal Air Force aircraft independent flights
- List of royal tours of Canada (18th–20th centuries)
- List of snack foods from the Indian subcontinent
- List of Sony products
- List of Southeastern Conference national championships
- List of sovereign states by date of formation
- List of stereoscopic video games
- List of stock characters
- List of Teen Titans Go! characters
- List of theatres in Ukraine
- List of ThunderCats characters
- List of unrecognized tribes in the United States
- List of USM Alger presidents
- List of woodpecker species
- List of WWE 2K Games video games
- List of WWII Maybach engines
- Listed buildings in Cleator Moor
- Lists of mountains and hills in the British Isles
- Litecoin
- Lithgow power station
- Lithodryas
- Little Foot
- Little Red Lies
- Little Trees
- Little-scaled least gecko
- Liturgical fan in Eastern Christianity
- Living Faith Church Worldwide
- Livingstone, Zambia
- Liz Bacon
- Liz Callaway
- Lloyd Green
- Lobster Institute
- Local Body Elections (India)
- Lockhart Football Club
- Lockheed L-1249 Super Constellation
- Lofi hip hop
- Logan Bye
- Lokma
- London Business School
- London Nahi Jaunga
- Lonely Drum
- Long double
- Longilinea
- Lonnie Mack
- Lord Longyang
- Lordship of Saxons Lode
- Loren Coleman
- Lorentz–Heaviside units
- Lorenzo Passerini
- Los Alamitos High School
- Los Alamos Ranch School
- Lotu Filipine
- Lotus effect
- Lotus shoes
- Loughguile
- Louis Lougen
- Louis Zamperini
- Louisa May Merrifield
- Lourdes Vázquez
- Loyal slaves monument
- LRT Line 1 (Metro Manila)
- LRT Line 2
- Luca Luciano
- Luca Turilli
- Lucius Roscius Otho
- Lucky's Market
- Ludovic Ferrière
- Lugdunin
- Luigi Pirandello
- Luis de Torres Synagogue
- Luis Felipe (gang leader)
- Luis Paulo Supi
- Lukas Greiderer
- Luke O'Loughlin
- Lullaby
- Luolishania
- Lupang Hinirang
- Lusaka Declaration
- Lutfi Zaghloul
- Lymm
- Lynda Day George
- Lynn Lashbrook
- Lyric poetry
- Lyubov Orlova
- M. Anthony Burns
- M. Leelavathy
- M/A/R/C Research
- M1917 Browning machine gun
- M33 X-7
- M8 Armored Gun System
- Maastricht Aachen Airport
- Maastricht Treaty
- Machete (character)
- Macracantha
- Macroeconomics
- Macroscope (science concept)
- Macu, The Policeman's Woman
- MAD Foundation
- Mada Masr
- Madeleine Albright
- Madeline Brewer
- Madeline Kahn
- Madhusudan Law University
- Madhya Pradesh Lok Adalat
- Maewo
- Magali Vaissière
- Magistrate (England and Wales)
- Magnolia Park, Houston
- Maharashtra
- Mahaveer Raghunathan
- Mahmoud Mar'ashi Najafi
- Mahmud Shah Durrani
- MailOnline
- Mainland Travel Permit for Hong Kong and Macao Residents
- Maithili music
- Maja Milinković
- Major roads in the Pilbara region of Western Australia
- Malagasy Air Force
- Malcolm II of Scotland
- Mali Wu
- Mall of Qatar
- Malladihalli Raghavendra
- Malvika Sharma
- Mambo Italiano (song)
- Mamurni ljudi
- Manaria Friends
- Manav Singh
- Manchester 62 F.C.
- Mandar, Ranchi
- Mangeshi
- Manikkavacakar
- Manipur Lok Adalat
- Manuel Hornibrook
- Manuel Tovar
- Mar Vista High School
- Marat Kazey
- Maratha conquest of North-west India
- Marathi language
- Marc Klok
- Marcella Koek
- Marcella Runell Hall
- March 1922
- March 1979
- Marci Ien
- Marcia Grostein
- Marcia Pally
- Marco Laterza
- Marcus Wills
- Marder I
- Marele Day
- Maren Hassinger
- Margaret Anne Lyons
- Margaret Kamar
- Margherita Sarfatti
- Margreta de Grazia
- Mari Illustrious Makinami
- Maria Cristina Ferro
- Maria Glazovskaya
- Maria Gloria Dominguez-Bello
- Maria Kalesnikava
- Maria Louisa Walsworth
- Maria Menado
- Maria Menounos
- Maria Popova
- Maria Varela
- Marian Otis Chandler
- Marie Dressler
- Marie Myriam
- Marilla Baker Ingalls
- Marilyn Van Derbur
- Marine Conservation Zone
- Marjolijn Verspoor
- Mark 41 Vertical Launching System
- Mark Cutifani
- Mark Edmondson (rugby league)
- Mark Gerard
- Mark Mackenzie
- Mark Mattson
- Mark Segal
- Mark White (Tennessee politician)
- Market intelligence
- Markéta Luskačová
- Marquise Walker
- Marselino Ferdinan
- Marshall Tuck
- Mart Sander
- Mart Stam
- Martha Ballard
- Martin Greenfield
- Mary A. Cooke Thompson
- Mary Ann Brown Patten
- Mary Anthony
- Mary Colter
- Mary in Islam
- Mary Tudor, Queen of France
- Mary Wigman
- Masaaki Yuasa
- Masitinib
- Mass (novel)
- Mass shootings in the United States
- Massacre (metal band)
- Master of Laws
- Master of the Castello Nativity
- Masvingo Province
- Mat Gleason
- Mata Aho Collective
- Mateus Galiano da Costa
- Matrites (family)
- Matt Le Tissier
- Matt Weitzman
- Matthew Alford
- Matthew Postlethwaite
- Matthieu Raffray
- Matvei Petrovich Bronstein
- Matzikama Local Municipality
- Maud Joachim
- Maureen Hegarty
- Maurizio Galli
- Mawes language
- Max McLean
- Max Planck
- Max Poll
- Maxence Danet-Fauvel
- Maximum Joy
- Maxine Nightingale
- MAZ-7310
- Mazafati
- McDonald's Canada
- Meadow Hall School
- Meadowview Estates, Kentucky
- Mean dependence
- Media linguistics
- Media Source Extensions
- MediaOne TV
- Medical cannabis card
- Medical fetishism
- Mediterranean recluse spider
- Medu vada
- Megantereon
- Meghalaya Lok Adalat
- Melbourne tram route 70
- Melissa Chan
- Melita Lorković
- Membrane bioreactor
- Memo Acevedo
- Memorial Day
- Memotech MTX
- Men's rights movement in India
- Menachem Friedman
- Mendefera
- Menlo, Kansas
- Mens rea
- Mental chronometry
- Mental Health Act 1983
- Mental health of Jesus
- Mentor Graphics
- Menua
- Mercedes-Benz GLC-Class
- Mercury Marquis
- Mercy Ships
- Merge (linguistics)
- Merieme Chadid
- Merkavim
- MERMAID
- Mermaid Man and Barnacle Boy
- Merritt Mauzey
- Mersenne Twister
- Mertensia virginica
- Mesha Stele
- Mesra, Ranchi
- Messier 100
- Metalwings
- Metamaterial
- Metford, New South Wales
- Metra
- Metro Theater (New York)
- Metropolitan Borough of Dudley
- Metropolitan Street Railway (Toronto)
- METRORapid Silver Line
- Mexico City International Airport
- Mia Kankimäki
- Miami Hurricanes football
- Mica
- Michael Duut
- Michael Eisenbach
- Michael F. Cannon
- Michael Hussey
- Michael Jackson videography
- Michael Keaton
- Michael McDonald (musician)
- Michael P. Snyder
- Michael Wittmann
- Michal Krumer-Nevo
- Mickey Channell
- Microcarrier
- MicroProse
- Microsemi
- Microsoft Office Live Meeting
- Microsoft Power BI
- Microsoft Support Diagnostic Tool
- MID2
- Middle Babylonian period
- Middlemarch
- Midway Mall
- Mikayil Jabbarov
- Mike Edel
- Mike Elizondo
- Mike Hodges
- Mike Nolan
- Mike Pereira
- Mike Waddell (sports administrator)
- Miko clothing
- Milan Mrksich
- Milan Rastavac
- Mile2
- Miles Brown
- Miliaresion
- Milind Tambe
- Military career of Bhoja
- Military history of Asian Americans
- Milk allergy
- Mille-feuille
- Minchinhampton
- Mini Globe Race
- Minicell
- Minimum wage in Sudan
- MinIO
- Minions (film)
- Ministry of Petroleum and Mining
- Ministry of Social Development and Fight against Hunger (Brazil)
- Minnesota Fats
- Minor League Baseball
- Minority (philosophy)
- Minya, Egypt
- Mir Yousuf Ali Khan, Salar Jung III
- Mirjam Brusius
- Mirna Bzdigian
- Mirsaid Sultan-Galiev
- Misandry
- Misery Harbour
- Misha B
- Miss Sophia's Diary
- Miss Universe 2022
- Miss World 1975
- Mission: Impossible – Dead Reckoning Part One
- Mission: Impossible (1966 TV series)
- Mississauga
- Mississippi Highway 433
- Mitch Hancox
- Mitchell Butel
- Mithuben Petit
- Mitre
- Mitsubishi Pajero
- Mittersill mine
- Mixed electoral system
- MJ (South Korean singer)
- Mobile Gendarmerie
- Mobile Suit Gundam 0080: War in the Pocket
- Moclobemide
- Mocquerysia (plant)
- Modular Product Architecture
- MODX
- Moez Chakchouk
- Mohammad Hossein Esheni Qudejani
- Mohammad ibn Masoud Ayyashi
- Mohammed Waheed Hassan
- Mohawk, Tennessee
- Mojo Nixon
- MOLCAS
- Molecularly imprinted polymer
- Mollie Harris
- Mollie Hemingway
- Mona Brand
- Monarchy of Ireland
- Monastery of Saint David the Elder
- Mongol conquest of Khorasan
- Monica Hellström
- Moninya Roughan
- Monitor lizard
- MonkeyPaw Games
- Monopis laevigella
- Monrovia, Maryland
- Monster of Florence
- Mont Sainte-Victoire (Cézanne)
- Monte Camulera
- Monte Massone
- Monterey, Illinois
- Montreux Business University
- Montrose, Houston
- Monument to Freedom and Unity
- Monument to Ivan Dokunin
- Moog Music
- Mordecai Sheftall
- Mornington Island
- Morris Albert
- Mortlach distillery
- MOSAiC Expedition
- Moshe Bar (investor)
- Moshions
- Motor Vehicles Manufacturers Ass'n v. State Farm Mutual Automobile Insurance Co.
- Motor-paced racing
- Mound Builders
- Mount Magnet, Western Australia
- Mount Slamet
- Mount Zion, Georgia
- Movement for a New Society
- Moyale
- Mr Puaz
- Mr. B Natural
- Mr. Lobo
- Mr. Magoo
- MTBVAC
- Muhammad al-Mahdi
- Muhammad Iqbal
- Mukkuvar (India)
- MullenLowe U.S.
- Multiculturalism
- Multinational Logistics Services scandal
- Multiplication (music)
- Mumbo Island
- Mundham
- Munib al-Masri
- Munich School
- Muppets TV
- Murad III
- Murder of Joanne Witt
- Muri, Ranchi
- Murray McLean (ambassador)
- Murrayglossus
- Muş
- Museum of Charlevoix
- Museum Walserhaus
- Music of Final Fantasy XIV
- Muslim Romani people
- Mustapha Baba Shehuri
- Mustapha Pacha hospital
- MV Alucia
- My Comrade
- N. R. Pogson
- N.S. Puleng
- N58A
- Nacellidae
- NACK-Oriented Reliable Multicast
- Nadezhda Alliluyeva
- Nadyr Khachiliev
- Nagad
- Naglaa Fathi
- Nagri, Jharkhand
- Naivas Limited
- Nalla Thomas
- Namasudra
- Namdev
- Namecoin
- Names of European cities in different languages (Q–T)
- Namkum, Ranchi
- Namma Veedu Vasanta Bhavan
- Nanda Lwin
- Nanjing Historical & Cultural Cities Expo
- Nanotribology
- Naples
- Narcos: Mexico
- Nargis Dutt Foundation
- Nariman Farvardin
- Narkopi
- Nasara
- Natalie Elphicke
- Natalie Rasmussen
- Natalie Wolchover
- Natasha Kaplinsky
- Nathan Patterson (footballer)
- National Center for Civil and Human Rights
- National Council of University Students (Italy)
- National Football League rivalries
- National Health Service
- National Institute of Standards and Technology
- National interest
- National Islamic Movement of Afghanistan
- National Library of China
- National Pension System
- National Treasure (film)
- NATO Stock Number
- Nattatreeswarar Temple
- Natural Doctrine
- Natural language generation
- Natus Vincere
- Naviband
- Navjot Altaf
- Nazareth
- Nazi Lowriders
- Nazz
- NBA on ABC
- Neanderthal extinction
- Near Eastern Archaeology (journal)
- Near-Earth supernova
- Negative Creep
- Negoro-ji
- Négritude
- Neha Dhupia
- Nella the Princess Knight
- Nellie Bowles
- Nelly Mugo
- Nelson F.C.
- Nénuphar
- Nepenthes lowii
- Neringa Dangvydė
- Nerve growth factor inhibitor
- Neston High School
- Netherlands in the Junior Eurovision Song Contest 2018
- New Älvsborg
- New Christian
- New Guinea
- New London Consort
- New London, New Hampshire
- New moon
- New Orleans blues
- New Super Mario Bros. U
- New Yam Festivals in Nigeria
- New York City Department of Correction
- New York Cosmos (2010)
- Newark Venture Partners
- News Corp
- Nezuko Kamado
- NHL on television in the 2020s
- Niall
- Nichola and Sarah Hope
- Nicholas Muyoti
- Nick Brown (academic)
- Nick Jr. (British and Irish TV channel)
- Nick Vincent Murphy
- Nicknames of New York City
- Nicolai Jørgensgaard Graakjær
- Nicolai L. Volodos
- Nicolas Namoradze
- Nicolaus Gercken Family Foundation
- Nigeria
- Nigerian National Museum
- Night service (public transport)
- Nika Turković
- Nike Air Max
- Nike Cortez
- Nikolai Georgievich Makarov
- Nile University of Nigeria
- Niles Crane
- Nilpena Ediacara National Park
- Nimble Streamer
- Ninšar
- Nippon (song)
- Nirigahama Station
- Nirmal Purja
- Nishinoshō Station
- Nitra Region
- Nitrosopumilus
- Nnamdi Azikiwe University
- No Password Necessary
- Noah Harpster
- Nogizaka46
- Noise
- Non-fungible token
- Noor Muhammad Lashari
- Nora Mørk
- Nordic megalith architecture
- Norman Finkelstein (poet)
- Norman Tindale
- Norman Vincent Peale
- Norns
- North Island giant moa
- North Macedonia national football team
- Northern Alberta Institute of Technology
- Northern lapwing
- Northern Ndebele language
- Norwich, New York
- Norwood Central station
- Note-taking
- Notebook interface
- Nothofagus gunnii
- Notothenioidei
- Notre Dame Fighting Irish football
- Noubar Afeyan
- Nour Hage
- Noureddin Esheni Qudejani
- Nova Scotia Carriage and Motor Car Company
- Nova Scotia Clippers
- NOW Party (Romania)
- NPAPI
- Nueltin Lake
- Number Five Crossbar Switching System
- Nuolja
- Nuovo soggettario
- Nuremberg City Hall
- Nustar Resort & Casino
- Nuzhat al-Qulub
- Nyonin Kinsei
- O Antiphons
- O Burgo (Pontevedra)
- O Pitta Katha
- Oak Ridge National Laboratory
- Oasis Academy Immingham
- ÖBB
- Oberheim Electronics
- Occitan language
- Occupational burnout
- Occupational disease
- Ocular albinism late onset sensorineural deafness
- Odil Abdumajidov
- Odisha Lok Adalat
- OECD Better Life Index
- Oecophora bractella
- Óengus I
- Off the derech
- Oguruma stable
- Oh No Not My Baby
- Oharae no Kotoba
- Oinoi railway station
- Oirata–Makasai languages
- Okita Sōji
- Oklahoma City Ice Hawks
- Old Babylonian Empire
- Old Bridge Township, New Jersey
- Old Dominion University
- Old Fashioned Lover Boy
- Old MacDonald Had a Farm
- Oleg Maltsev (psychologist)
- Olga Hankin
- Oliver Burkeman
- Oliver Cooper (politician)
- Olivette, Missouri
- Olivier Barlet
- Olympiodorus of Thebes
- Omar Faruk Osman
- Omiltemi Ecological State Park
- Omrides
- Ondioline
- One Flight Up
- OnePlus Nord
- Oohyo
- Open High School (Virginia)
- Open-pan salt making
- Opera Omnia Leonhard Euler
- Operation Assured Delivery
- Operation Dark Heart
- Operation Excite/Hilti
- Operation Flat Top
- Operation Nifty Package
- Operations support system
- Opitsaht
- Optimal distinctiveness theory
- Option for the poor
- Optionally Manned Fighting Vehicle
- Opuntia caracassana
- Opuntia erinacea
- Opuntia macrorhiza
- Opus Maximum
- Oradell, New Jersey
- Orangeburg-Wilkinson High School
- Order of Attorneys of Brazil
- Order of Karađorđe's Star
- Order of St. Sylvester
- Oregon State League
- Oreobolus pumilio
- Organic azide
- Organic, Inc.
- Organization of Iranian American Communities
- Orion Weiss
- Orissa Lok Adalat
- Orlando Museum of Art
- Ormyrus nitidulus
- Oronoque (estate)
- Orrin Hatch
- Orsa Spelmän
- Orthodox Encyclopedia
- Oscilloscope
- Osheaga Festival
- Oshkosh MB-5
- Osmanabad
- Osteoarthritis
- Österlen
- Oswald Rufeisen
- Otabek Murodov
- Otis Norcross
- Otofaciocervical syndrome
- Otsuka Pharmaceutical
- Ottobock
- Ouigo España
- Oujé-Bougoumou
- Our Lady of Good Counsel High School (Maryland)
- Our Lady of the Snows, Quarantoli
- Ourno
- Outsource Partners International
- OV1-8
- Ovais Mangalwala
- Overoraptor
- Overseas Warriors
- Owen Bonnici
- Owl Woman
- Oxford, Alabama
- Oy! (film)
- Oyster Farmer
- P. K. Sasidharan
- P.N.03
- Pablo Larraín
- Pacific ocean perch
- Pacomio
- Padina (alga)
- Padma Choling
- Padmasali (caste)
- Pahari people (Kashmir)
- Pain psychology
- Painted Skin: The Resurrection
- Pakistan Aeronautical Complex
- Pakistan Secretary of Communications
- Paknam Railway
- Pala Empire
- Palazzo Antonini, Udine
- Palestine 194
- Palitha Silva
- Pamela Underwood
- Pan Am Railways
- Pan Cheng-tsung
- Panathlon Foundation
- Pandarikulam
- Pangasinan
- Panipat
- Pankaja Munde
- Pano Akil
- Panthera onca mesembrina
- Panzerjäger I
- Paon DP
- Papahānaumokuākea Marine National Monument
- Pape Satàn, pape Satàn aleppe
- Papel Prensa
- Parable of the Strong Man
- Paraguayan War
- Paramount+
- Paranoid (Black Sabbath song)
- Paritala Sunitha
- Park Gate
- Parkway High School (Louisiana)
- Parsons Engineering
- Partickhill
- Particle Physics Project Prioritization Panel
- Parupeneus multifasciatus
- Parwaaz Hai Junoon
- Pascal Morand
- Paschal candle
- Pasi Patokallio
- Pastime Paradise
- Pat Frankish
- Pat Robertson
- Pathankot Municipal Corporation
- Patience Agbabi
- Patricia Easterbrook Roberts
- Patricia Englund
- Patrick Deane (professor)
- Patrick Fischler
- Patrick Reyntiens
- Patrick Webb (nutritionist)
- Patruni Sastry
- Patsy Torres
- Pattern hair loss
- Patti Scialfa
- Patton Village, Texas
- Patty Gurdy
- Paul Beliën
- Paul Broca
- Paul Cézanne
- Paul Lambert (special effects artist)
- Paul Lewis (journalist)
- Paul R. Berger
- Paul Ranheim
- Paul Trevithick
- Paul Whitehouse
- Paula Berwanger
- Paula T. Hammond
- Pavarotti & Friends
- Pavel Shperov
- Pavle Arsoski
- Paxton Gate
- PeaceJam
- Peak uranium
- Pedal point
- Pedro Sainsevain
- Peggy Angus
- Pekka Sassi
- Pelasgus of Argos
- Pelvic pain
- Pench National Park
- Peninsula Grammar
- Penitanzacid F
- Penn State DuBois
- Penny Sharpe
- Pennyworth (TV series)
- Pentachondra pumila
- People Cards
- People's Party of Russia
- Perfect All-Kill
- Perfect Match (American game show)
- Performance measurement
- Peristernia ustulata
- Perivoli Schools Trust
- Perkele
- Pērkons (band)
- Perpetuum
- Persib Bandung
- Perverse incentive
- Pervez Malik
- Petaluma High School
- Pete Jacobsen
- Peter Abelard
- Peter Alan Bell
- Peter Duesberg
- Peter Englund
- Peter J. Kelly
- Peter J. Wacks
- Peter Keefe
- Peter Nicol Russell
- Peter of Savoy (archbishop)
- Peter Schantz
- Peter Tomka
- Peterbilt
- Petko Chobanov
- Petrological Database of the Ocean Floor
- Pharma&
- Phase space measurement with forward modeling
- Philip Giraldi
- Philip S. Balboni
- Philippe Corcuff
- Philippe Denis
- Philippe Loiseleur des Longchamps Deville
- Philippe Sudré Dartiguenave
- Philippine Institute of Volcanology and Seismology
- Philippine Revolution
- Phillip Crews
- Philosophy of artificial intelligence
- Phineas Flynn
- Phoenician language
- Phoenix 2
- Phoenix American
- Phos-Chek
- Photocathode
- Photoelectrochemical cell
- Photogrammetry
- Photography in Sudan
- Photon-Induced Near-field Electron Microscopy
- Photopheresis
- Phratora
- Phratora polaris
- Phyllostegia
- Phylogenetic nomenclature
- Phymorhynchus sulciferus
- Physa
- Piano sonatas (Beethoven)
- Piccolo (Dragon Ball)
- Pichenotte
- Picocon
- Pictilabrus
- Pictones
- Piermario Morosini
- Pierre Bonny
- Pierre d'Espagnac
- Pierre-Étienne de Perier
- Piezoelectrochemical transducer effect
- Pilgrims F.C.
- Pillai College of Engineering (Autonomous)
- Pink Man
- Pino Rucher
- Pinoy Big Brother: Kumunity Season 10
- Pioneer (train)
- Piracicaba
- Pitaloosie Saila
- Pithuriya
- Pittsburgh International Airport
- Pivot Gang
- Pkharmat
- Place des Quinconces
- Planina, Postojna
- Plano, Texas
- Plateau pika
- PLATO (computational chemistry)
- Plazi
- Plesiopleurodon
- Plug-in electric vehicles in Sweden
- Plugg (music)
- Plumbworld
- Plummers Island
- Podari Zhizn
- Poems of Asolo
- Poikilohydry
- Pokémon (TV series)
- Poland in the European Union
- Polarization density
- Poles in Lithuania
- Police misconduct allegations during the 2019–2020 Hong Kong protests
- Police reform in the United States
- Polina Kanis
- Polish historical regions
- Political movement
- Politically exposed person
- Politics and government of the Dutch Republic
- Politics of Punjab, India
- Politics of Singapore
- Politics of Tripura
- Polonization
- Polonnaruwa–Pagan War
- Polskie Elektrownie Jądrowe
- Polygon (website)
- Polynomials calculating sums of powers of arithmetic progressions
- Polystira tellea
- Polytonality
- Pond Creek National Wildlife Refuge
- Pondicherry Lok Adalat
- Pongalur
- Ponsse
- Pontiac Safari
- Poodle Dog Restaurants
- Pop it (toy)
- Population Zero
- Por Andalucía
- Porfirio Rubirosa
- Port Aransas, Texas
- Port Canaveral
- Port Imperial Street Circuit
- Port Royal
- POSCO International
- Poseidon Linux
- Postdigital
- Potamogalidae
- Potosi Peak
- Poulomi Desai
- Power factor
- Power take-off
- Powered air-purifying respirator
- Prabhasakshi
- Practice Fusion
- Pradeep Khadka
- Pradhyumansinh Mahipatsinh Jadeja
- Pragmatic constructivism
- Prajadhipok
- Prakash Reddy
- Prakash Subedi
- Pramod Paliwal
- Pratap Bhanu Mehta
- Pravoslavie.ru
- Prayut Chan-o-cha
- Pražský Krysařík
- Pre-existing duty rule
- Prem Kumar Dhumal
- Prem Shankar Jha
- Preparer Tax Identification Number
- Preppy
- Presidential Advisory Commission on Election Integrity
- Presidential call button
- Preventable causes of death
- Primera Junta
- Primes in arithmetic progression
- Primula secundiflora
- Prince of Gosplan
- Prince of Lu (Ming dynasty)
- Prince Rajcomar
- Prince Władysław's March on Moscow
- Princess Clémentine of Orléans
- Princess Elisabeth Antarctica
- Princess Myeongsuk
- Princeton University
- Principality of Serbia (early medieval)
- Pristina International Airport
- Private set intersection
- Pro Evolution Soccer
- Probabilistic numerics
- Probe tip
- Process philosophy
- Professional
- Project plan
- ProMED-mail
- Propylene oxide
- Protected areas of Quebec
- Protests against Rodrigo Duterte
- Protests of 1968
- Proto-Semitic language
- Protoxin-I
- ProVeg International
- PS Rising Star
- Psalm 127
- Pseudocharis minima
- Psychedelics and ecology
- Psychrophile
- PTC Therapeutics
- Public Security Service (Lithuania)
- Public transport accessibility level
- Puçol
- Pudendal nerve
- Pulpe de vie
- Pumpkin
- Punjab Law College
- Pupillidae
- Pure Hell
- Puritan Backroom
- Pursuit of Happiness (song)
- Purwakarta
- Purworejo Regency
- Pydio
- PyMOL
- Q37 (New York City bus)
- Qayyum Chowdhury
- Qian Zhongshu
- Qiraʼat
- Qiu Jin
- QLab
- Qualified electronic signature
- Quantifind
- Quantum volume
- Quebec Sign Language
- Quercus calliprinos
- Question answering
- R Street Institute
- R v Zora
- R. B. Lemberg
- R. D. Rajasekhar
- R.I. Bong Air Force Base
- Rachel Hartman
- Rachel Therrien
- Racism in Brazil
- Radcot Bridge
- Radio-frequency identification
- Radiodonta
- Radionuclide identification device
- Radnorshire Challenge Cup
- RAF Alconbury
- Rafael Cordero (educator)
- Rafik Bouderbal
- Ragam Thanam Pallavi
- Rahe, Jharkhand
- Rail speed limits in the United States
- Raj Kumar Verka
- Raj of Sarawak
- Rajapur, Maharashtra
- RallyPoint
- Ralph Dennis
- Ram Chandra (Lalaji)
- Ram Puniyani
- Ramatu Tijani Aliyu
- Ramiz
- Ramon Revilla Sr.
- Ramot Mall
- Randy Bush (scientist)
- Rangila Rasul
- Ranked voting
- Raquel Nobile
- Raramuri Criollo
- Rasputina (band)
- Rathbunaster californicus
- Ratna Ghosh
- Ratu, Ranchi
- Raveena Aurora
- Ray Henwood
- Ray Parlour
- Ray Styles
- Ray Wilson (musician)
- Ray, Jharkhand
- Raymond Jackson (American football)
- Raymond L. Rodriguez
- Raymond Nonnatus
- Raymond Théberge
- Rayon
- RD-180
- Real tennis
- Reason to Believe
- Rec Room (video game)
- Recess railway station
- Recording Industry Association of America
- Records of the Grand Historian
- RECOVERY Trial
- Rectus abdominis muscle
- Red Bank, Tennessee
- Red fuming nitric acid
- Red Jade
- Red Skull
- Redfingers
- Redstone, British Columbia
- Reese Witherspoon
- Reflexive relation
- Reformed Church in Zimbabwe
- Refrain (Stockhausen)
- Regieoper
- Reginald Scoones
- Reid Highway
- Reine Swart
- Relation (mathematics)
- Release factor
- Reliance Insurance Company
- Religion in North Macedonia
- Remote head (camera)
- Renaud I, Count of Soissons
- Rene Rinnekangas
- Renuka Das Bhalerao
- Report for America
- Reputation management
- Requiem für einen jungen Dichter
- ResEdit
- Reticulate whipray
- Retinal cone dystrophy 3B
- Revolt of the Polkos
- Rexford, Kansas
- Reynolds v. Sims
- Reza Zadeh
- Rhode Island
- Rhode Island Red Monument
- Rhode Island's 2nd congressional district
- Rhythmic mode
- Ribosomal protein L13 leader
- Ricarda Winkelmann
- Riccardo Giraudi
- RICE (medicine)
- Rice University School of Architecture
- Rich Wilkerson Jr.
- Richard Amphlett
- Richard B. Spencer
- Richard Bradford (actor)
- Richard Broinowski
- Richard Catlow
- Richard Lloyd (guitarist)
- Richard Mulligan
- Richard Murphy (tax campaigner)
- Richard Nickl
- Richard P. Harmond
- Richard Pan
- Richard Parry-Jones
- Richard Rosen
- Richard Rossi
- Richard Rössler
- Richard Temple-Nugent-Brydges-Chandos-Grenville, 2nd Duke of Buckingham and Chandos
- Richard Zane Smith
- Richey Suncoast Theatre
- Rick Baitz
- Rick Dudley
- Rider University
- Rifabutin
- Rifles in the American Civil War
- Right Thru Me
- Right to development
- Right to die
- Right to petition in the United States
- Rima Bishwokarma
- Rimac Nevera
- Rinat Akhmetov
- Ring of Brodgar
- Rio 2
- Rita Izsák-Ndiaye
- Ritornello
- River Blackwater (River Loddon)
- River Mula (Spain)
- River Police (Bangladesh)
- Riversdale Cup
- Riverstone, Texas
- Rob Parissi
- Rob Stone (entrepreneur)
- Robert Bruce, Lord of Liddesdale
- Robert C. Nicholas
- Robert Coulondre
- Robert Earl Hughes
- Robert F. Denzler
- Robert G. Vignola
- Robert Herbert Story
- Robert Kaye Greville
- Robert L. Caslen
- Robert Munro, 1st Baron Alness
- Robert Napier Raikes
- Robert P. Lipton
- Robert Rotenberg
- Robert Scott (businessman, born 1946)
- Robert Sedgewick (computer scientist)
- Robert Sengstacke Abbott
- Robert Trefusis, 17th Baron Clinton
- Roberto Dañino
- Robertson screw
- Robin Olsen
- Robin Pecknold
- Robson Hall
- Rochester Poets
- Rock fishing
- Rock Machine MC criminal allegations and incidents
- Rock music
- Rocket Knight Adventures
- Rocket Racer
- Rockford Institute
- Rockhampton
- Rodney Street, Liverpool
- Roger Boisjoly
- Roger van Boxtel
- Roger Ver
- Roger Woodward
- Rogers–Ramanujan continued fraction
- Rogue Credit Union
- Role of music in World War II
- Role of Nantes in the slave trade
- Roman Catholic Archdiocese of Southwark
- Roman Catholic Diocese of Bà Rịa
- Romance of the Sea (clipper)
- Romane Prigent
- Romania in the Eurovision Song Contest
- Romeo V. Turcan
- Ron Thornton (visual effects designer)
- Ron van den Brink
- Ronald Fairbairn
- Ronald Hugh Barker
- Rory and the Island
- Rory Carroll
- Rosalynn Bliss
- Rosc
- Roscoe, Pennsylvania
- Rowan Witt
- Rowing at the 2013 Canada Summer Games
- Roxanne Varza
- Roy Arden
- Roy Krishna
- Roy Pea
- Royal Antediluvian Order of Buffaloes
- Royal Golf Club Mariánské Lázně
- Royal Netherlands Air Force
- Royal Welsh Yacht Club
- RSA (cryptosystem)
- Rubellin B
- Rubén Marshall Tikalova
- Rudy den Outer
- Ruki sound law
- Rumor spread in social network
- RunDisney
- Rupert Christiansen
- Rupert Spira
- Russell & Company
- Russell Impagliazzo
- Russell Square tube station
- Ruth Halperin-Kaddari
- Ryūkyū Disposition
- S. J. Suryah
- S. L. Rose
- S&H Green Stamps
- Saarbrücken Airport
- Sääse
- Saber Interactive
- Sabina Guzzanti
- Sabine Aubert
- Sacubitril/valsartan
- Sada Cumber
- Safe Passage (film)
- Safeguarding (planning law)
- Sahakdukht
- Sahti
- Sai Baba of Shirdi
- Said Abdullahi Dani
- Saint Pyr
- Saint-Germain l'Auxerrois
- Saks Fifth Avenue, Beverly Hills
- Sakura cheese
- Salad Days (Mac DeMarco album)
- Saleemul Huq
- Salience (neuroscience)
- Sally Morgan (psychic)
- Salumeria Rosi Parmacotto
- Sam Brown (singer)
- Sam Kavuma
- Sam Lucente
- Sam Ongeri
- Samantha Batt-Rawden
- Samaya Nissanke
- Sambalpur Municipal Corporation
- Sampson Orji
- Samsung Galaxy S4 Zoom
- Samu Tuomaala
- Samuel Booker McDowell, Jr.
- Samuel Lavelle
- Samuel M. Goldhagen
- San Bernardino, California
- San Diego Padres
- San Francisco Fire Department
- San Francisco Theological Seminary
- San Geronimo, California
- San Juan de Nicaragua
- San Marziale
- Sancta Sophia College, University of Sydney
- Sandeep P Parekh
- Sandhills Global
- Sandra Oh
- Sandy Ojang Onor
- Sankar Chakraborti
- Sankar Das Sarma
- Sanna Solberg-Isaksen
- Sannai-Maruyama Site
- Sanne Vloet
- Sanskrit nominals
- Santa Rosa–Tarlac Road
- Santiago Metro Line 8
- Santiago Metro Line 9
- Santoni (tribe)
- Santos Limited
- Santos Museum of Economic Botany
- São Paulo Fashion Week
- Sapan Saxena
- Saqiyah
- Sara (Bob Dylan song)
- Sara Agnes Rice Pryor
- Sara Dosa
- Sara García
- Sara Serraiocco
- Sarah Parcak
- Sarahsaurus
- Sarcococca ruscifolia
- Sarojini Naidu
- Sasumata
- Satavahana dynasty
- Satellite internet constellation
- Sati (practice)
- Satish Dua
- Saturday (group)
- Saur Revolution
- Saurichthyiformes
- Scared Stiff (1945 film)
- Scary Stories: Dark Web
- Schema (Kant)
- Schottische
- Schrödinger, Inc.
- Scintillator
- SCMS School of Engineering and Technology
- Scoliosis
- Scotch & Soda (clothing)
- Scott Aukerman
- Scott Doney
- Scott Sifton
- Scott Sonnon
- Scottish Gaelic-medium education
- Scouting museums
- Scratch hardness
- Scream (franchise)
- Scutellaria lateriflora
- Sea Scouts (The Scout Association)
- Seals and Crofts
- Sean McMeekin
- Secret Love Song
- Sedano's
- Segre class
- Sehet, wir gehn hinauf gen Jerusalem, BWV 159
- Seija Toro
- Self-acceptance
- Selina Tobaccowala
- Selman Waksman
- Semen Semenchenko
- Semicassis bondarevi
- Senatus consultum ultimum
- Sensory processing disorder
- Septa rubecula
- Septifer bilocularis
- Sergei Yushenkov
- Sergey Pavlovich Morozov
- Sérgio Nascimento de Camargo
- Sergio Navarretta
- Sergio Vez
- Serialization
- Server Message Block
- Sesshū Tōyō
- Session Description Protocol
- Sethi model
- Seven Islands of Izu
- Seven Oaks Dam
- Sewraam Rambaran Mishre
- Sex trafficking in China
- Sexuality in Islam
- Shabunda Territory
- Shadow Puppeteer
- Shaily Priya Pandey
- Shaiva Siddhanta
- Shaji Choudhary
- Shangri-La Hotel, Tokyo
- Shania Hayles
- Shannon family
- Shaposhnik
- Shawn Fonteno
- Shawn Landres
- Shawn Michaels
- Shaykh al-Islām
- Shea butter
- Shea Charles
- Shearer's Bar
- Shelah (name)
- Shenzhou 14
- Shepetivka
- Shepit, Chernivtsi Oblast
- Shepperdine
- Shepseskaf
- Sher Mountain Killings Mystery
- Sherpur Sadar Upazila
- Shilha people
- Shinjuku Station
- Shintarō Asanuma
- Shion Uzuki
- Shirley Woodson
- Shitbox Rally
- Shiva
- Shlomo Helbrans
- Sholeh Wolpé
- Shotley Bridge
- Siam Free Press
- Sibur
- Sibynophis bivittatus
- Sidecar Health
- Sidhu Moose Wala discography
- Sidney Psalms
- Siege of Lérida
- Signal transition graphs
- Sikhism
- Sikidiri
- Sikkim Lok Adalat
- Silent Hill
- Silken Painting of Emperor Go-Daigo
- Silli
- Silvacola
- Silver Lake, Wyoming County, New York
- Silver Moon (David Sylvian song)
- Silversmith Capital Partners
- Silvia Odio
- Siméon Denis Poisson
- Similarweb
- Simon A. Levin
- Simon Cadden
- Simon Guobadia
- Simon P. Coker
- Simon Smith and the Amazing Dancing Bear
- Sing, Unburied, Sing
- Singapore Police Force Band
- Single- and double-pen architecture
- Singrauli Municipal Corporation
- Siniperca chuatsi
- Sir John Fenwick, 3rd Baronet
- Sir William Parsons, 1st Baronet of Bellamont
- Sirius XM Love
- Sisters Adorers of the Royal Heart of Jesus Christ Sovereign Priest
- Site of the Claudian invasion of Britain
- Situa
- Sivakasi (film)
- Six Flags Hurricane Harbor Concord
- Skaldic Poetry of the Scandinavian Middle Ages
- Skibidi
- Skin effect
- Sky Sports
- Skyworth EV6
- Slaughter to Prevail
- Slavery in Mali
- Slavery in Merovingian France
- Slim Riahi
- Slovene dialects
- Slow science
- Smallpox in Australia
- Smallpox vaccine
- Smart village
- Smith Valley, Nevada
- SNC-Lavalin affair
- SNCF BB 1-80
- Sniper: Assassin's End
- Snowclone
- Snowflake moray
- Sober Grid
- Soccer on CBS Sports
- Social equality
- Social learning theory
- Social trading
- Society for Risk Analysis
- Society of United Irishmen
- Sociomateriality
- SOE RF Section
- Sofía Mulánovich
- Sofija Milošević
- Software Technology Parks of India
- Soil carbon
- Sola fide
- Solar power forecasting
- Solarpunk
- Solé
- Solid-phase reversible immobilization
- Soling European Championship
- Sologamy
- Solubility
- Somaliland nationality law
- Some Voices (film)
- Sonahatu
- Song for a Winter's Night
- Soni Oyekan
- Sonlicromanol
- Sonoma International Film Festival
- Sonoratown, Los Angeles
- Sophia Genetics
- Sophie Molholm
- Sordariales
- Soto (food)
- Soumodip Sarkar
- Soup and bouilli
- South Africa and weapons of mass destruction
- South African Republic
- South American hoary bat
- South Asian literature
- South Hackensack, New Jersey
- South Korea national football team records and statistics
- South Ossetia
- South Side Railroad of Long Island
- South West Coaches
- Southern elephant seal
- Southern Sun Hotel Group
- Southgate, Swansea
- Southwest Texas League
- Sovereign Military Order of the Temple of Jerusalem
- Soybean mosaic virus
- Space advertising
- Space Coast Office of Tourism
- Space launch market competition
- SpaceX Dragon 2
- Spain national cricket team
- Spanish unionism
- Spare vote
- Sparta
- Spartacist League of Britain
- Spatial analysis
- Spatial heterogeneity
- SPB TV
- Speaking in tongues
- Speenhamland system
- Spheromak
- Sphodrosaurus
- Spice Networks
- Spiders (album)
- Spilomyia fusca
- Spilomyia liturata
- Spiridon Melikyan
- Spirit possession and exorcism in Islam
- Spondulix
- Spontaneous emission
- Spontaneous fission
- Sporobolus clandestinus
- Sport communication
- Sports broadcasting contracts in Croatia
- Sports teams named Redskins
- Spotted whistling duck
- Spring Hill, Queensland
- Spruce grouse
- Squat toilet
- Sredny Stog culture
- Sri Petaling
- Sri Petaling LRT station
- Srihari S. Naidu
- St Aldhelm's Academy
- St Benet's Hall Boat Club
- St John the Baptist Church, Windsor
- St Paul's Churchyard
- St. Francis Xavier High School (Edmonton)
- St. Henry's Catholic Church (St. Henry, Ohio)
- St. Mary's Seahawks
- St. Marys Bay French
- St. Paul's Episcopal Church (Englewood, New Jersey)
- Staatsexamen
- Stable isotope composition of amino acids
- Stacey Bridges
- Stadio Gino Alfonso Sada
- Stadion Miejski (Nisko)
- Stadium of Light
- Staffordshire University
- Stalemate
- Stand by Me (Ben E. King song)
- Stand by Me Doraemon 2
- Star Academy
- Star Fleet Project
- Star in My Heart
- Star Theatres
- Star Wars: Origins
- Starlink
- Stars in My Pocket Like Grains of Sand
- State of Fear
- State Religious Affairs Bureau Order No. 5
- State–action–reward–state–action
- Steel Assault
- Stefan Liebich
- Stefan Zrinzo Azzopardi
- Stefano Quintarelli
- Stein Rokkan
- Stella Creasy
- Stepan Shutov
- Stephane Custot
- Stephanie Storey
- Stephanopogon
- Stephen Devereux of Bodenham and Burghope
- Stephen Foster
- Stephen Haddrill
- Stephen Jolly
- Stephen McGuire
- Stephen V. Ryan
- Stereotypes of Indigenous peoples of Canada and the United States
- Steve Blank
- Steve Jobs
- Steve Markle
- Steve Pigeon
- Steve Reyes
- Steve Wozniak
- Steven Caulker
- Steven Dietz
- Steven J Fowler
- Steven Murdoch
- Steven R. Nagel
- Steven van Eijck
- Steven Woods
- Sticks Nix Hick Pix
- Sticky Notes
- Stinson Aircraft Company
- Stonewell Cider
- Stoning
- Storm chasing
- Stormy Daniels
- Storz
- Stramenopile
- Strataca
- Stratioti
- Straw Dogs (book)
- Stretchheads
- String Quartet No. 1 (Piston)
- Strontium titanate
- Structure of the Federal Reserve System
- Stu Holt
- Stuart Adamson
- Stuart Harris (public servant and academic)
- Stuart Hyatt
- Stuart Lancaster (rugby union)
- Stuart Pimm
- Stubbs Society
- Study of animal locomotion
- Sub-Zero (brand)
- Subbotniks
- Subcutaneous fat necrosis of the newborn
- Subsidiarity (Catholicism)
- Suchitra Sebastian
- Sudan Memory
- Sugar quartz
- Suicide of Kurt Cobain
- Sukeban Shachou Rena
- Suleiman the Magnificent
- Sultan's Palace, Zanzibar
- Sumire Tsuji
- Sun Qian
- Sunder Ramaswamy
- Sunil Khandbahale
- Super League Triathlon
- Superior Ultraman 8 Brothers
- Supermodel
- Surabaya
- Surjeet Singh Deswal
- Surreptitious Entry
- Survivor 42
- Susan Batson
- Susan Templeman
- Susan Weiss
- Susenyos I
- Sushanta Mitra
- Sustainable Development Goals
- Sustainable finance
- Sutton Stracke
- Suzan Mutesi
- Suzhou Industrial Park No. 5 Middle School
- Swahili people
- Swami Shree Haridas Ji
- Swan Silvertones
- Swansea
- Swine influenza
- Swiss German
- Swiss railway clock
- Switchblade
- Sycozoa seiziwadai
- Sydney Opera House
- Syed Wadal Shah
- Symbolic artificial intelligence
- Symbols of Manchester
- Symmetrodonta
- Sympecma fusca
- Synagogue of Livorno
- Synaptic plasticity
- Synchronization in telecommunications
- SYTË
- T Aurigae
- T-10 tank
- T. Dan Smith
- T. J. Zeuch
- Tactical Knives
- Taekkyeon
- Tage Thompson
- Tahsin Yazıcı (scholar)
- Taita Hills
- Taiwan
- Takase Shrine
- Tako (band)
- Talantaaly Bakchiev
- Talisman Timescape
- Talladega Nights: The Ballad of Ricky Bobby
- Taman Negeri Rompin, Pahang
- Tamar, India
- Tamaz Mechiauri
- Tamil Nadu Lok Adalat
- Tamsin Egerton
- Tana Bridge
- Tanezumab
- Tanks in World War I
- Tanya
- Tar (string instrument)
- Tarim mummies
- Tarique Ashraf
- Tarkhun
- Tarot
- Taryn Manning
- Tasnim Nazeer
- Tassajara, California
- Tati, Ranchi
- Tatiana Sorokina
- Tatsuya Oishi (director)
- Tatyana Frunze
- Tausug language
- Tawaif
- Tax policy
- TBJZL
- Tea in Australia
- Teaching and learning center
- Tear from the Red
- Technicolor SA
- Technological Association Malaysia
- Technologies in Minority Report
- Technology Innovation Institute
- Ted Bundy
- Ted Lilly
- Teenage pregnancy
- Teens' love
- Tejal A. Desai
- Tekkeköy
- Telemusik
- Telephone numbers in Vietnam
- Television in Cuba
- Television Interface Adaptor
- Temple at Uppsala
- Temple of Blood
- Tempura
- Temuera Morrison
- Tenseless language
- Tequila Volcano
- Terazije
- Tere Bina Jiya Jaye Na
- Tereré
- Teresa and Maria Milanollo
- Teresa Burga
- Terminology of homosexuality
- TerraNet AB
- Terry Collins
- Tesla Supercharger
- Tessa ter Sluis
- Tethyshadros
- Tetrachromacy
- Texas Academy of Mathematics and Science
- Texas State Aquarium
- Textile
- Textpattern
- Thadou language
- Thai President Foods
- Thanachart Bank
- Tharakan (title)
- The 100: A Ranking of the Most Influential Persons in History
- The Adventures of Superboy
- The Age of Earthquakes
- The Amazing Spider-Man (film)
- The Bahamas
- The Balme Library
- The Beaverton
- The Bomb Factory Art Foundation
- The Born Losers
- The Boys (TV series)
- The Bridge Stage of the Arts
- The Camp (1967 play)
- The Candy Apple News Company
- The Center for Election Science
- The Chairs
- The Chronicles of Riddick: Escape from Butcher Bay
- The Church of Ireland Gazette
- The Climate Mobilization
- The Cloud Room (album)
- The Dardanelles (band)
- The Dedica Anthology Hotels
- The Del-Vikings
- The Delivery Boy (1931 film)
- The Desolate Time
- The Devil (Tarot card)
- The Diggers (Van Gogh)
- The Dressmaker (2015 film)
- The Embalmer (1965 film)
- The F Word (South Park)
- The Fighter and the Kid
- The Fog of War
- The Four Lads
- The Future Sound of London
- The Gift: Imagination and the Erotic Life of Property
- The Gifted (American TV series)
- The Gilded Age (TV series)
- The Grasshopper and the Ants (film)
- The Great Pretender
- The Groundhogs
- The Guy Who Didn't Like Musicals
- The Harrison Studio
- The Hellacopters
- The History of Rome (podcast)
- The Hollow Men
- The Holographic Principle
- The Hood Internet
- The Hotel Brussels
- The House of Ramazanovs
- The Houston Bowery Wall
- The Humanitarian Coalition
- The Ice Age Adventures of Buck Wild
- The Invisible Hook
- The Irish Catholic
- The Jungle (Seattle)
- The Kipper Kids
- The Kut
- The Lakeville Journal
- The Land Institute
- The Last Seduction
- The Law of Pardon
- The Living Daylights
- The Met (arts centre)
- The Midnight Gospel
- The Millionaire (calculator)
- The Moon Is Blue
- The Morley Academy
- The Mote in God's Eye
- The Muppet Christmas Carol
- The Mystic River
- The New Dance Show
- The No WTO Combo
- The Oatmeal
- The Oxford Club
- The Peripheral
- The Physician (Dou)
- The Pickwick Corporation
- The Plan (Washington, D.C.)
- The Plane Makers
- The Platters
- The Princeton Review
- The Prisoner of Sex
- The Promise (2016 film)
- The Rich Man's House
- The Scarlet Plague
- The Sharpe Brothers
- The Shrew of Destiny
- The Silent Invasion (comics)
- The Similitude of a Dream
- The Spirit of Apollo
- The Spring Bintulu
- The Sunday Correspondent
- The Supersuckers
- The Sydney Morning Herald
- The Tarn
- The Tenth Riddle
- The Third Wave (experiment)
- The Three-Cornered Hat (novel)
- The Tiny Bang Story
- The Total Drop
- The Trauma of Birth
- The Unholy Three (1925 film)
- The Walker Brothers
- The Wee Blue Book
- The Whaling Museum & Education Center
- The Wheatley School
- The White Book
- The whole nine yards
- The World Became the World
- The Wrecks
- Théâtre Saint-Denis
- Theistic finitism
- Theo Green
- Theodora Stanwell-Fletcher
- Thepfülo-u Nakhro
- There are known knowns
- Theresa Griffin
- Thérèse of Lisieux
- Thermador
- Thermophile
- Thibaut Courtois
- Thierry Rautureau
- Thignica
- Think Big
- This Boy's Life
- This Is Not Art
- Thomas Bruice
- Thomas D. Thacher
- Thomas Donohoe
- Thomas Jeffrey
- Thomas Melville (writer)
- Thomas Meyrick
- Thomas Rainsborough
- Thomas W. Hanshew
- Thomas W. Libous
- Thomson MO5
- Thomson TO7
- Thor Salden
- Thorne Head Preserve
- Thread (network protocol)
- Three Pilgrimage Festivals
- Three-finger toxin
- Throat singing
- Thylacine
- Tianzi Mountain
- Tiberius
- Tibetan sovereignty debate
- Tiempo Pa' Matar
- Tigran Chukhajian
- Til Wykes
- Tilak Weerasooriya
- Tim Michels
- Tim Parker
- Time and Chance (Color Me Badd album)
- Time Diver: Eon Man
- Timeline of cannabis law
- Timeline of first images of Earth from space
- Timeline of the war in Donbas (2018)
- Timurid Empire
- Tineola bisselliella
- Tish Murtha
- Tishpak
- Tiu (pharaoh)
- Tivoli Theatre (Dublin)
- Tizayuca
- Tmogvi
- Tobolsk
- Toby Kimball
- Together (French duo)
- Toilet humour
- Tokyo 24th Ward
- Tom Clancy's The Division 2
- Tom Rakocevic
- Tom Rees (RFC officer)
- Tom Wolf
- Tom Wood (rugby union)
- Tomás Saraceno
- Tomb of Jahangir
- Tommy Kenter
- Tongai Moyo
- Tony Aquila
- Tony Defries
- Tony Fitzgerald
- Tony Stone (filmmaker)
- Too Good To Go
- Too Much, Too Soon
- Tooth resorption
- TOP500
- Topological data analysis
- Topological graph
- Toque
- Tore Bjørgo
- Tornado outbreak sequence of March 24–28, 2021
- Torreya Guardians
- Toshiyuki Seino
- Total Politics
- Tots Tolentino
- Tourism in Italy
- Tourism in Tanzania
- Toyota Corolla (E100)
- Toyotomi Hideyoshi
- Trachea
- Traci Hunter Abramson
- Tracy Chevalier
- Trams in popular culture
- Transference: A Bipolar Love Story (film)
- Transit (1817 ship)
- Translatio studii
- Transport in Algeria
- Transport in Nigeria
- Transporter (Star Trek)
- Travel during the COVID-19 pandemic
- Treadmilling
- Treason
- Treat Me Rough
- Trechus terrabravensis
- Tree injection
- Treemapping
- Trenton Generating Station
- Triarchy of Negroponte
- Trictrac
- Tridax procumbens
- Tridentine Mass
- Triggerfish Animation Studios
- TRIM3
- Trioxidane
- Triple accreditation
- Tripura Lok Adalat
- Tristan Connelly
- Triumph Hotels
- Trope (music)
- Tropicana Las Vegas
- Trusted execution environment
- Trusted Platform Module
- Truth-default theory
- Tshilidzi Marwala
- Tua Pek Kong Temple, Kuching
- Tundul
- Tunji Kasim
- Tunnel of Love Express Tour
- Tunnelmental
- Turamdih Uranium Mine
- Turing test
- Turn on (The Beat Box)
- Turritopsis rubra
- TV BRICS
- Tyler Breeze
- Type 003 aircraft carrier
- Type 08
- Type theory
- Tyre Extinguishers
- Tzadikim Nistarim
- Tzaraath
- U.S. Route 70 in North Carolina
- U12 minor spliceosomal RNA
- UCLA–USC rivalry
- Udai Singh Pawar
- Uganda Army (1971–1980)
- UK Government G-Cloud
- Ukhnaagiin Khürelsükh
- Ullmann's Encyclopedia of Industrial Chemistry
- Ùlpan
- Ulrike Meinhof
- Ultimate fact
- Ultra-high vacuum
- Ultrafast electron diffraction
- Ultramarathon
- Umaru Musa Yar'Adua
- Umbelopsis ramanniana
- UMshwathi Local Municipality
- Uncomputation
- Under Pressure
- Unemployment in Russia
- UNESCO
- Unexpected John Cena
- Uniform integrability
- Unintended pregnancy
- Union Electric Company
- Union Nationale des Étudiants de France
- United Kingdom and the League of Nations
- United Nations Security Council Resolution 6648
- Universal City Studios, Inc. v. Nintendo Co., Ltd.
- Universal Declaration of Human Rights
- University of Chicago Booth School of Business
- University of Edinburgh
- University of Edinburgh Medical School
- University of Hradec Králové
- University of London Air Squadron
- University of Mannheim
- University of Massachusetts Lowell
- University of New England (Australia)
- University of North Texas Health Science Center
- University of South Africa
- University of Strathclyde Students' Association
- University of Sydney Library
- University of the Chinese Academy of Sciences
- University of Utah
- University of Wolverhampton
- UNNS-The Captivation
- Until the Real Thing Comes Along
- Unuamen, Nigeria
- Urethritis
- Uriah Smith
- US Festival
- USAA
- Usnarz Górny
- USNS City of Bismarck
- USS Artemis (SP-593)
- USS Hornbill (AMS-19)
- USS Kitty Hawk (CV-63)
- USS Washington (1776 frigate)
- Utah Property Management Associates
- Uttarakhand Lok Adalat
- Uveitic glaucoma
- UWA Publishing
- Uzès
- Vache Sharafyan
- Vaddukoddai Resolution
- Vadim Shumkov
- Vagina and vulva in art
- Vaishali Thakkar
- Valari
- Valasapalle
- Valentine Vishnevsky
- Valer Austin
- Valerian Osinsky
- Valerie Martin
- Vamana
- Vanderhoof, British Columbia
- Vanessa Noel
- Vanscoy, Saskatchewan
- Varamin
- Variolation
- Varma Mutual Pension Insurance Company
- Värnamo
- Varsity (Cambridge)
- Vassos Lyssarides
- Vehicle registration plates of Oklahoma
- Veles circle
- Veljko Lalić
- Venlafaxine
- Vera King
- Verba volant, scripta manent
- Verghese Kurien
- Verlioka
- Vernon God Little
- Verónika Mendoza
- Vertebrate
- Vespa binghami
- Vi Senior Living
- Vicia ervilia
- Victim Rights Law Center
- Víctor Saldaño
- Victoria Nuland
- VIDA (online retailer)
- Video browsing
- Vif, Isère
- Vijay Kedia
- Vijaya Dasa
- Viking (rocket)
- Vikram (2022 film)
- Viktor Chakrygin
- Viktor Kibenok
- Viktor Nazarov (general)
- Vilanterol
- Vilcabamba tapaculo
- Vilnius
- Vinod K. Singh
- Viper's Drag
- Virgin Earth Challenge
- Virginia Beach, Virginia
- Virginia General Assembly
- Virtual patient
- Virtual threads
- VirtualBox
- Visa policy of Mexico
- Visa policy of Somaliland
- Vishwananda
- Vitanovac
- Vitriol
- Viva Las Vegas (EP)
- Vivienne Poy
- Vivo Y3
- Vixen (comics)
- Vlachs in medieval Bosnia and Herzegovina
- Vladimir Kiriyenko
- Vladimir Lossky
- Vladimir Nevsky
- Vladimir Nikitin (politician)
- Vladimir Solovyov (philosopher)
- VMware
- Volksdeutsche
- Voluntary Product Accessibility Template
- Voluptas
- Vomiting
- Vontikoppal
- Voodoo Woman
- Voter database
- Vranac
- Vroisha
- Vyacheslav Shport
- Vyvyan Donnithorne
- W. Wallace Cleland
- Waardenburg anophthalmia syndrome
- Wagon fort
- Wairarapa Line
- Wakoku
- Wakulla County, Florida
- Walk on Water (Basshunter song)
- WalkAway campaign
- Walker Lake (Nevada)
- Wallace M. Alexander
- Walnut Grove, Mississippi
- Walter Bransen
- Walter Kohn
- Walter Mandler
- Walter Prescott Webb
- Walter VI, Count of Brienne
- Waltham Cross
- Wang Seng-wei
- Wang Yu (lawyer)
- Wangan, Penghu
- Want Want
- War crimes in the 2022 Russian invasion of Ukraine
- Warda al Turk
- Warnborough College
- Warstic
- Washington Capitals
- Washington County, Florida
- Washington Huskies
- Washington University School of Medicine
- Waste
- Waste-to-energy
- Watching the Wheels
- Water coaster (roller coaster)
- Watergrasshill
- Watervalley Wetlands
- Waukesha Biota
- Wave Accelerated Ring Pinch Reactor
- Wave power
- Wayne A. I. Frederick
- Wayne Nelson (statistician)
- WBZY
- We Are England (2022 TV programme)
- Wear
- Weaver Press
- Web application firewall
- Web Therapy (season 3)
- Weber Inc.
- Week (mythology)
- Wei Shiyu
- Weiping Qin
- Wembley or Bust
- Wen-Hsiung Li
- Wendell Wallach
- Werner Stengel
- Wesley Addy
- West Chester Township, Butler County, Ohio
- West Savu
- West-Indisch Huis (Amsterdam)
- Western betrayal
- Western calligraphy
- Western Conference (USL Championship)
- Western Dental
- Western Region Megapolis
- WGBH-TV
- Whale vocalization
- What a Man (song)
- What Up with That?
- When Chai Met Toast
- When the Raven Flies
- When You See Millions of the Mouthless Dead
- White & Nerdy
- White émigré
- White Flags
- White House Military Office
- White Ladye
- White people
- White wedding
- White-footed dunnart
- Whittington Landon
- Who Dat?
- Who is a Jew?
- Whoscall
- WHPS-CD
- Wicca
- Wife
- Wil Jones (basketball coach)
- Wilbur Winfield Woodward
- Wilhelm Daser
- Wilhelm Zaisser
- Willi Sandforth
- William Alfred Tilleke
- William Bull II
- William G. Young
- William Howard, 1st Viscount Stafford
- William Knox (Scottish poet)
- William Marwick
- William P. Hobby Airport
- William Patterson Dunlop
- William Phillips (sailor)
- William Pole (antiquary)
- William R. Orthwein Jr.
- William Samuel Horton
- William Scharf
- William Shaw (laboratory owner)
- William Shunn
- Willie Williams (set designer)
- Willits, California
- Wilma Salas
- Wilson matrix
- Windowlicker
- Winged Victory of Samothrace
- Wings (1990 TV series)
- Wings Over Europe Tour
- Winn Schwartau
- Winsor McCay
- Wire (Wire album)
- WiredScore
- Wirtualna Polska
- Witold Gombrowicz
- WLW
- WLYV
- WMGG
- Wolf Amendment
- Wolf Branch Nature Preserve
- Wolfert Simon van Hoogenheim
- Wolfgang Tschacher
- Woman on the Edge of Time
- Women in Burundi
- Women in space
- Women in the Brazilian Congress
- Women in the French Senate
- Women's Strike for Equality
- Wong Kam-sing
- Woodham Brothers
- Woodridge Ecological Reserve
- Woodstock Parish, New Brunswick
- Wool church
- Wootz steel
- Word of the year (Ukraine)
- Working Mother
- Works of Muhammad Iqbal
- World Federation of Independent Scouts
- World Summit Awards
- World Tourism Day
- World Vision Ghana
- World.minds
- Wrongful execution
- Wujiquan
- WWFA
- WYCC
- X-Men: First Class
- X-Men: The Last Stand
- X-wing fighter
- Xanthophyllum lanceatum
- Xeno (series)
- Xenon isotope geochemistry
- XEPZ-AM
- Xinhua News Agency
- Xinjiang conflict
- Xinjiang Mandarin
- XOJET Aviation LLC
- XVIVO Scientific Animation
- XxxHolic (film)
- Yaakov Hagoel
- Yahaya Madawaki
- Yahya (name)
- Yahya Yahya
- Yale-NUS College
- Yamuna Devi
- Yana van der Meulen Rodgers
- Yandamuri Veerendranath
- Yang Seung-ho
- Yankee Hotel Foxtrot
- Yashar Niknafs
- Yavne'el
- Yaya Dukuly
- Ye Chun
- Yea, Victoria
- Yechezkel Roth
- Yechiel Eckstein
- Yehudi Menuhin
- Yellow-naped amazon
- Yeongsanjae
- Yes, My Darling Daughter
- Yes, Norman Productions
- Yeshivas Itri
- Yevgeny Dragunov
- Yoda (song)
- Yoel Halpern
- Yomi Owope
- Yondr
- Yongwoo Lee
- Yoo Je-won
- Yordan Álvarez
- You and Your Sister
- You Make Loving Fun
- Young Innovation Leaders Fellowship
- Young Progressives Party
- Young Women Muslim Association of Singapore
- YourTV (Canada)
- Yu Yue
- Yu-Gi-Oh! The Dark Side of Dimensions
- Yuliya Solntseva
- Yume Ippai
- Yungchen Lhamo
- Yuri Mikhailovich Orlov
- Yurii Zakharieiev
- Yuvabharathi Public School
- Yuzuki Yamato
- Yves (given name)
- Zabeel Investments
- Zack Moss
- Zadoff–Chu sequence
- Zaireeka
- Zajas
- Zanthoxylum dissitum
- Zanthoxylum echinocarpum
- Zanthoxylum esquirolii
- Zanthoxylum glomeratum
- Zanthoxylum multijugum
- ZaSu Pitts
- Zayd ibn al-Khattab
- ZBLAN
- Zed Shaw
- Zeev Rudnick
- Zelia vertebrata
- Želimir Žilnik
- Zemmoa
- Zenshūyō
- Zero Deposit
- Zhang Ling (author)
- Zinc smelting
- Zoji La
- Zrarieh raid