Jump to content

Nonbinary gender in fiction and Module:Infobox: Difference between pages

(Difference between pages)
121,583 bytes removed ,  5 years ago
m
1 revision imported: Mass importing office templates & modules
imported>TXJ
 
imported>Sau226
m (1 revision imported: Mass importing office templates & modules)
 
Line 1: Line 1:
{{featured article}}
--
{{content warning|spoilers, transphobia/nbphobia}}
-- This module implements {{Infobox}}
This list of [[fictional depictions of nonbinary gender]] is for taking note of all examples of [[nonbinary]] [[gender identity]] in fiction in any kind of media. The media includes animation, board and card games, books and other literature, comics and graphic novels, movies, performance, TV, webseries, and video games. Since most people don't know that people can have a nonbinary gender identity, the way that nonbinary genders are represented in fiction can be a valuable part of nonbinary visibility and awareness. Fiction can also be an outlet for nonbinary people to explore their identities and the possibilities of society's attitudes toward them. These are reasons why representation matters. It's very rare for fiction to have any real representation of nonbinary gender. It's almost as rare for characters to have an undisclosed gender, or to have a fictional sex, which almost but not really counts as nonbinary representation. They're close enough that they are dealt with on this page and the page [[Undisclosed gender in fiction]].
--
local p = {}


There is a difference between being born with a physical [[intersex]] condition, and having a nonbinary gender identity. Many intersex people identify as just [[female]] or [[male]], not nonbinary. Many nonbinary people were not intersex, meaning they were [[AFAB|assigned female at birth]] or [[AMAB|assigned male at birth]]. If a character has a real-life kind of intersex condition, you should still list them on this page only if they also have a nonbinary gender identity.
local navbar = require('Module:Navbar')._navbar


If you add a piece of media to this list, please tell exactly which character is nonbinary, and how this is told in canon, or your entry will be deleted. Don't include media here that just has a popular "headcanon" (a fan's imaginary interpretation) of a nonbinary character, because this isn't representation. Please give direct quotes from canon that are evidence that the character is nonbinary.
local args = {}
local origArgs
local root


==Nonbinary genders in fiction==
local function notempty( s ) return s and s:match( '%S' ) end


This section is for the most true-to-life representation of nonbinary gender identities. The story explicitly says that they don't identify as a woman or man, but as a different gender. The characters aren't nonbinary because of having fictional sexes. Their physical sexes and genders assigned at birth are non-intersex or a real-life intersex condition. If their physical sex or gender assigned at birth is undisclosed, their gender identity is still explicitly, specifically labeled as not female or male, but something else. They may or may not take a social or physical transition in their gender expression. They may or may not look androgynous. They may or may not go by gender-neutral pronouns.
local function fixChildBoxes(sval, tt)
if notempty(sval) then
local marker = '<span class=special_infobox_marker>'
local s = sval
s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. marker)
if s:match(marker) then
s = mw.ustring.gsub(s, marker .. '%s*' .. marker, '')
s = mw.ustring.gsub(s, '([\r\n]|-[^\r\n]*[\r\n])%s*' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '%s*([\r\n]|-)', '%1')
s = mw.ustring.gsub(s, '(</[Cc][Aa][Pp][Tt][Ii][Oo][Nn]%s*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '(<%s*[Tt][Aa][Bb][Ll][Ee][^<>]*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '^(%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '([\r\n]%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s,  marker .. '(%s*</[Tt][Aa][Bb][Ll][Ee]%s*>)', '%1')
s = mw.ustring.gsub(s, marker .. '(%s*\n|%})', '%1')
end
if s:match(marker) then
local subcells = mw.text.split(s, marker)
s = ''
for k = 1, #subcells do
if k == 1 then
s = s .. subcells[k] .. '</' .. tt .. '></tr>'
elseif k == #subcells then
local rowstyle = ' style="display:none"'
if notempty(subcells[k]) then rowstyle = '' end
s = s .. '<tr' .. rowstyle ..'><' .. tt .. ' colspan=2>\n' .. subcells[k]
elseif notempty(subcells[k]) then
if (k % 2) == 0 then
s = s .. subcells[k]
else
s = s .. '<tr><' .. tt .. ' colspan=2>\n' .. subcells[k] .. '</' .. tt .. '></tr>'
end
end
end
end
return s
else
return sval
end
end


===Animation===
local function union(t1, t2)
    -- Returns the union of the values of two tables, as a sequence.
    local vals = {}
    for k, v in pairs(t1) do
        vals[v] = true
    end
    for k, v in pairs(t2) do
        vals[v] = true
    end
    local ret = {}
    for k, v in pairs(vals) do
        table.insert(ret, k)
    end
    return ret
end


* In ''Tengen Toppa Gurren Lagann'', the character Leeron states "I'm both and neither a man and a woman." <ref>''Tengen Toppa Gurren Lagann'', episode 2</ref> (Most fans treat Leeron as a gay man.)
local function getArgNums(prefix)
* Season four of ''She-Ra and the Princesses of Power'' introduces the nonbinary character Double Trouble, who uses [[singular they]] pronouns and is voiced by nonbinary actor [[Jacob Tobia]].
    -- Returns a table containing the numbers of the arguments that exist
* In the Anime Soul Eater, the character called Crona is non-binary. In a interview the writer said that he wanted to make a character that normalizes nonbinary/[[X-gender]] so all the other characters accept Crona's identity without question. (In the original translation they call Crona he/him this is due to a mistranslation)
    -- for the specified prefix. For example, if the prefix was 'data', and
* Milo, from the ''Danger & Eggs'' animated series, is a minor nonbinary character played by the [[agender]] voice actor [[Tyler Ford]].<ref>''[https://www.autostraddle.com/danger-and-eggs-is-the-greatest-weirdest-queer-and-trans-inclusive-kids-show-ever-382906/ “Danger & Eggs” Is The Greatest Weirdest Queer-and-Trans Inclusive Kids Show Ever]'', Autostraddle, July 2017.</ref>
    -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}.
* Shep in ''Steven Universe Future'' is a human nonbinary character (as opposed to the Gems who are nonhuman, see [[Nonbinary_gender_in_fiction#Fictional_sexes|Fictional sexes section of this page]]). Shep uses [[singular they]] and is voiced by [[Indya Moore]].
    local nums = {}
* In Nickelodeon's ''Middle School Moguls'', one of the teachers, Wren, is nonbinary.<ref>{{cite tweet|user=TimGunn|number=1169338993034461185|title=Schools in session! Don’t forget to tune in this Sunday, September 8th at 11:00 a.m. ET/PT for the premiere of Nickelodeon's Middle School Moguls – starring yours truly as Wren, a non-binary teacher in the Mogul Academy Fashion Branch! #Nickelodeon #middleschoolmoguls #mogulize|date=4 September 2019}}</ref>
    for k, v in pairs(args) do
* Envy from ''Fullmetal Alchemist: Brotherhood'' is genderless and uses they/them pronouns.{{citation needed}}
        local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
* Yuta "Yū" Asuka (飛鳥 悠, Asuka Yūta) from the Tokyo Broadcasting System anime series ''Stars Align'' had a short arc that touched on how they were [[questioning]] their gender identity. During this, they tell Maki that they want to be referred to with [[gender neutral language]] and that they think they are [[X-gender]] but don't want to be categorized.
        if num then table.insert(nums, tonumber(num)) end
* Astolfo from the ''Fate'' series uses ''both'' he/him and they/them pronouns, but presents in a very feminine manner. In their profile in ''Grand Order'' they list their gender as "le secret" per their request, and they use both male and female terms to describe themself, calling themself both a "cute boy", and a "maiden" in different scenes. Quotes from their bio include "Instead of making judgments based off of merits, Astolfo makes all choices based off if it feels good or not." and "Gender means nothing in the face of Astolfo's cuteness! But there's really no way Astolfo could be a girl...".  Despite this many fans treat Astolfo as either a feminine man or a trans woman. Their pronouns also vary depending on the translation, with ''Grand Order''<nowiki/>'s English localization using they/them and ''Apocrypha's'' English dub using he/him.
    end
* Le Chevalier d'Eon from the ''Fate'' series is genderfluid, and accepts being seen as either a man or a woman by the player. Both he/him and she/her pronouns are used interchangeably, and their "Self Suggestion" skill allows them to alter both their body and aura between being masculine and feminine. The historical figure they are based on was also intersex.
    table.sort(nums)
* Enkidu from the ''Fate'' series is genderless and uses they/them pronouns.
    return nums
end


{| class="wikitable sortable"
local function addRow(rowArgs)
|+
    -- Adds a row to the infobox, with either a header cell
Animation
    -- or a label/data cell combination.
!Which character(s) are nonbinary
    if rowArgs.header then
!Proof of nonbinary status
        root
!Character Role
            :tag('tr')
!Title
                :addClass(rowArgs.rowclass)
!Showrunner(s) / Creator(s)
                :cssText(rowArgs.rowstyle)
!Air Dates
                :attr('id', rowArgs.rowid)
!Publisher(s)
                :tag('th')
!Genre(s)
                    :attr('colspan', 2)
!Content Warning
                    :attr('id', rowArgs.headerid)
!Notes
                    :addClass(rowArgs.class)
|-
                    :addClass(args.headerclass)
|Leeron Littner
                    :css('text-align', 'center')
|Littner states "I'm both and neither a man and a woman."
                    :cssText(args.headerstyle)
|Protagonist - Supporting
                    :cssText(rowArgs.rowcellstyle)
|''Tengen Toppa Gurren Lagann''
                    :wikitext(fixChildBoxes(rowArgs.header, 'th'))
|Hiroyuki Imaishi and  Kazuki Nakashima
    elseif rowArgs.data then
|04/01/2007 - 09/30/2007
        local row = root:tag('tr')
|Aniplex, Konami
        row:addClass(rowArgs.rowclass)
|Adventure, Mecha
        row:cssText(rowArgs.rowstyle)
|Many major characters die in the series, but not Leeron.
        row:attr('id', rowArgs.rowid)
|Most fans treat Leeron as a gay man.
        if rowArgs.label then
|-
            row
|Double Trouble
                :tag('th')
|uses [[singular they]] pronouns
                    :attr('scope', 'row')
|Side character
                    :attr('id', rowArgs.labelid)
|''She-Ra and the Princesses of Power''
                    :cssText(args.labelstyle)
|Noelle Stevenson
                    :cssText(rowArgs.rowcellstyle)
|04/2016 - now
                    :wikitext(rowArgs.label)
|Dreamworks Animation Television
                    :done()
|Adventure
        end
|
       
|Double Trouble is voiced by nonbinary actor [[Jacob Tobia]].
        local dataCell = row:tag('td')
|-
        if not rowArgs.label then
|Envy
            dataCell
|uses [[singular they]] pronouns
                :attr('colspan', 2)
|Secondary Antagonist
                :css('text-align', 'center')
|''Hagane no Renkinjutsushi Furumetaru Arukemisuto''
        end
|Yasuhiro Irie
        dataCell
|04/5/2009 – 07/4/2010
            :attr('id', rowArgs.dataid)
|Bones, MBS, Aniplex
            :addClass(rowArgs.class)
|Adventure, Dark fantasy, Steampunk
            :cssText(rowArgs.datastyle)
|Many hard events in first episodes
            :cssText(rowArgs.rowcellstyle)
|In most of translations was used he/him pronouns when mentioning them
            :newline()
|}
            :wikitext(fixChildBoxes(rowArgs.data, 'td'))
    end
end


===Audio===
local function renderTitle()
* In the podcast ''The Adventure Zone'', there are four characters who are refered to as they/them. In the first season, The Adventure Zone: Balance, a minor character named Roswell (an Earth Elemental made of living clay in a suit of armor, who talks via a small bird) is [[agender]] and uses they/them pronouns.<ref>[https://theadventurezone.wikia.com/wiki/Roswell The Adventure Zone Wiki: Roswell]</ref>
    if not args.title then return end
*In the second season, ''The Adventure Zone: Amnesty'', a reoccurring secondary character named Hollis (the leader of a local gang named The Hornets) is non-binary and uses they/them pronouns. <ref>[https://theadventurezone.fandom.com/wiki/Hollis The Adventure Zone Wiki: Hollis]</ref>
*In the third season, ''The Adventure Zone: Graduation'', both a gnome student named Mimi and one of the recurring teachers, Festo the faerie, use they/them pronouns.<ref>{{Cite web|url=https://theadventurezone.fandom.com/wiki/Mimi|title=Mimi|website=The Adventure Zone Wiki|language=en|access-date=2020-04-06}}</ref><ref>{{Cite web|url=https://theadventurezone.fandom.com/wiki/Festo|title=Festo|website=The Adventure Zone Wiki|language=en|access-date=2020-04-06}}</ref>
* In the podcast series ''Welcome To Night Vale'', there are several non-binary characters who are referred to with "they" pronouns. Recurring non-binary characters include a scientist named Alice and the town's new Sheriff, Sam.
*In the podcast ''The Penumbra Podcast'', there are a vast number of non-binary characters. The most prevalent of these is the namesake of the Juno Steel arc, who uses he/him pronouns but is explicitly non-binary and refers to himself as a lady on several occasions.<ref>{{Cite web|url=https://thepenumbrapodcast.fandom.com/wiki/Juno_Steel|title=Juno Steel|website=The Penumbra Podcast Wiki|language=en|access-date=2020-04-06}}</ref>
*In the podcast ''The Strange Case of Starship Iris'', Krejjh uses they/them pronouns, finds the concept of binary genders funny and states "[no pronouns] feel great"
*The main character known as "The Runner" in the fantasy podcast ''And 195'' is nonbinary.<ref>http://and195podcast.com/story-and-characters</ref>
* The main character Alex in ''Evergreen Sky'' is nonbinary and uses [[they/them]] pronouns.<ref>https://www.evergreenskypod.com/about</ref>
* The main character Rion in ''Sidequesting'' is nonbinary and uses [[they/them]] pronouns.<ref name="podchaser">{{cite web|access-date=23 November 2020 |url=https://www.podchaser.com/lists/nonbinary-rep-107ZzsCTo0|title=Nonbinary Rep!|last=Minear|first=Tal|work=Podchaser}}</ref>
* In ''Inn Between'', Velune and Knowles both use [[they/them]] pronouns.<ref name="podchaser" />
* In ''Moonbase Theta, Out'', Ashwini Ray uses [[English neutral pronouns#Ze|ze/zir]] pronouns, Wilder uses she/they pronouns, and Alexandre Bragado-Fischer uses he/they pronouns.<ref name="podchaser" />
* In ''Novitero'', Medic and Valzin both use they/them pronouns.<ref name="podchaser" />
* In ''Less Is Morgue'', Riley uses they/them pronouns.<ref name="podchaser" />
* In ''Light Hearts'', Kale uses they/them pronouns.<ref name="podchaser" />
* In ''Transmission Folklore'', Sorrel uses they/them pronouns.<ref name="podchaser" />
* In ''Null/Void'', supporting character Dodger uses they/them pronouns.<ref name="podchaser" />
* In ''Love and Luck'', supporting character CJ uses they/them pronouns.<ref name="podchaser" />
* In ''Kalila Stormfire's Economical Magick Services'', supporting character Desiree Onasis uses they/them pronouns.<ref name="podchaser" />
* In ''The Van'', supporting character Audre uses they/them pronouns.<ref name="podchaser" />
* In ''Soulborn City'', supporting character Anacrea uses they/them pronouns.<ref name="podchaser" />
* In ''Zoo'', supporting character Normandy uses they/them pronouns.<ref name="podchaser" />
* In the Trinyvale Campaign of ''Not Another D&D Podcast'', the world has three deities: one male, one female, one nonbinary.
* In ''Loveville High'', a musical podcast, the character Jendrix is [[genderqueer]] and played by nonbinary actor [[Mason Alexander Park]].
* In the urban fantasy podcast ''Kalila Stormfire's Economical Magick Services'', Desiree is nonbinary, and is played by nonbinary performer [[Zayn Thiam]].<ref name="Zutter">{{Cite web |title=8 Sweet, Funny, and Thrilling Queer Fiction Podcasts |last=Zutter |first=Natalie |work=Tor.com |date=16 October 2019 |access-date=20 February 2021 |url= https://www.tor.com/2019/10/16/8-sweet-funny-and-thrilling-queer-fiction-podcasts/}}</ref>
* Several major characters in the podcast ''The Nonbinary Carrie Bradshaw'' are nonbinary.


===Board and card games===
    root
        :tag('caption')
            :addClass(args.titleclass)
            :cssText(args.titlestyle)
            :wikitext(args.title)
end


* Magic the Gathering features multiple nonbinary characters.  
local function renderAboveRow()
**Ashiok is a character of unknown gender, who explicitly resists categorisation.<ref>https://dougbeyermtg.tumblr.com/post/61002920437/the-german-card-of-ashiok-uses-the-pronoun-der<br /></ref><ref>https://dougbeyermtg.tumblr.com/post/102494647314/this-got-asked-to-maro-and-someone-pointed-out</ref><ref>https://dougbeyermtg.tumblr.com/post/102500055934/some-people-want-to-know-about-ashioks-gender</ref> Though some depictions of the character erroneously use “he” as a pronoun, Ashiok uses no pronouns.<ref>[https://wizardsmagic.tumblr.com/post/122805111811/ashioks-style-guide-entry Ashiok's Style Guide Entry—The Official Magic the Gathering Tumblr]</ref>
    if not args.above then return end
**Karn is an [[agender]]<ref name=":0">https://markrosewater.tumblr.com/post/146423949568/karn-doesnt-care-use-whatever-you-like</ref> golem from the plane of Dominaria created by the planeswalker Urza as part of his experiments with time travel. Narration and other characters use he/him pronouns for Karn, though he has no pronoun preference.<ref name=":0" /> Although as a golem he has no sex, he was assigned male at creation.
   
**Hallar the Firefletcher is an nonbinary elf from the Llanowar forest on the plane of Dominaria. They use an unknown elvish pronoun set which is described as "genderless" and reflecting their "ambiguous identity". The narration refers to them with they/them pronouns.<ref>https://wizardsmagic.tumblr.com/post/173041035761/dominaria-prerelease-is-fast-approaching-so-lets</ref>
    root
**Niko Aris, a planeswalker introduced in the ''Kaldheim'' set, is nonbinary and uses [[singular they]] pronouns. Some of ''Kaldheim'''s game designers are real nonbinary people.<ref name="Kaldheim">{{Cite web |title=Meet Niko Aris, New Non-Binary Planeswalker From Magic: The Gathering Kaldheim |author= Weekes, Princess|work=The Mary Sue |date=16 December 2020 |access-date=18 December 2020 |url= https://www.themarysue.com/niko-aris-non-binary-planeswalker-mtg-kaldheim/}}</ref><ref name="TurnerNiko">{{Cite web |title=Creating Niko Aris |last=Turner |first=Gerritt |work=Magic: The Gathering |date=14 December 2020 |access-date=18 December 2020 |url= https://magic.wizards.com/en/articles/archive/feature/creating-niko-aris-2020-12-14}}</ref>
        :tag('tr')
            :tag('th')
                :attr('colspan', 2)
                :addClass(args.aboveclass)
                :css('text-align', 'center')
                :css('font-size', '125%')
                :css('font-weight', 'bold')
                :cssText(args.abovestyle)
                :wikitext(fixChildBoxes(args.above,'th'))
end


===Books and other literature ===
local function renderBelowRow()
    if not args.below then return end
   
    root
        :tag('tr')
            :tag('td')
                :attr('colspan', '2')
                :addClass(args.belowclass)
                :css('text-align', 'center')
                :cssText(args.belowstyle)
                :newline()
                :wikitext(fixChildBoxes(args.below,'td'))
end


*''Beyond Binary: Genderqueer and Sexually Fluid Speculative Fiction'' edited by Brit Mandelo
local function renderSubheaders()
*''River of Gods'' and ''Cyberabad Days'' by Ian McDonald - India, 2050, with interesting subplots about [[Hijra]]. The pronoun "yt" is used for genderless characters.
    if args.subheader then
*''Luna: Wolf Moon'' and ''Luna: Moon Rising'', also by Ian McDonald, have a nonbinary character named Vidhya Rao.<ref>https://en.wikipedia.org/wiki/Luna:_Wolf_Moon and https://en.wikipedia.org/wiki/Luna:_Moon_Rising</ref>
        args.subheader1 = args.subheader
*''Crooked Words'' by K. A. Cook has several short stories about characters who are explicitly said to be nonbinary. The character Chris cultivates an androgynous appearance, and asks to be called by [[Pronouns#they|"they" pronouns]]. Chris is in the short stories "Blue Paint, Chocolate and Other Similes" and "Everything In A Name."<ref>K. A. Cook, ''Crooked Words.'' Unpaged.</ref> In "The Differently Animated and Queer Society," the queer-identified characters Pat and Moon go by "[[Pronouns#Ze|ze, hir]]" and "[[Pronouns#Ou|ou]]" pronouns, respectively.<ref>K. A. Cook, "The Differently Animated and Queer Society." ''Crooked Words.'' Unpaged.</ref> In "Misstery Man," the self-described non-binary character Darcy asks to be called by "[[Pronouns#Ey|ey and eir]]" pronouns.<ref>K. A. Cook, "Misstery Man." ''Crooked Words.'' Unpaged.</ref>
    end
*Greg Egan's novel ''Distress'' (1995) includes transgender humans who transition to a specific gender outside the binary that they call "asex", called by [[Pronouns#Ve|ve pronouns]].<ref>John McIntosh, "ve, vis, ver." [http://www.urticator.net/essay/0/30.html]</ref>
    if args.subheaderrowclass then
*In Kameron Hurley's fantasy novel, ''Empire Ascendant,'' all people in a consent culture get to choose which of the five gender roles they identify with. Hurley calls characters who are "ungendered" by singular they pronouns.<ref>Kameron Hurley, "Beyond He-Man and She-Ra: Writing nonbinary characters." https://intellectusspeculativus.wordpress.com/2014/09/03/guest-post-beyond-he-man-she-ra-writing-non-binary-characters-by-kameron-hurley/</ref>
        args.subheaderrowclass1 = args.subheaderrowclass
*In a short sci-fi story by Benjanun Sriduangkaew, "[http://clarkesworldmagazine.com/sriduangkaew_12_13/ Silent Bridge, Pale Cascade]" (2013), one of the characters is described as a "[[neutrois]]," and called by "they" pronouns.<ref>Alex Dally MacFarlane, "Post-Binary Gender in SF: ExcitoTech and Non-Binary Pronouns." June 3, 2014. ''Tor.'' http://www.tor.com/blogs/2014/06/post-binary-gender-in-sf-excitotech-and-non-binary-pronouns</ref><ref>Benjanun Sriduangkaew, "Silent Bridge, Pale Cascade." ''Clarkesworld Magazine.'' 2013. http://clarkesworldmagazine.com/sriduangkaew_12_13/</ref>
    end
*''Stone Butch Blues'' by [[Leslie Feinberg]], a semi-autobiographical novel about a [[butch]] named Jess Goldberg, and the trials and tribulations she faces growing up in the United States before the Stonewall riots. Feinberg defines butch as a gender identity neither female nor male.
    local subheadernums = getArgNums('subheader')
*''Take Me There: Trans and Genderqueer Erotica'' edited by Tristan Taormino
    for k, num in ipairs(subheadernums) do
* In ''Surface Detail'', the character Yime Nsokyi is "[[neuter]]-gendered" and has an [[intersex]] body by choice.
        addRow({
*At the end of ''Freakboy'', the main character, Brendan Chase identifies themselves as [[genderfluid]]. The book is primarily about their transition, and does end on a depressing note regarding their gender."
            data = args['subheader' .. tostring(num)],
*In Sam Farren's novel ''Dragonoak: The Complete History of Kastelir'' (2015) and its sequel ''Dragonoak: The Sky Beneath the Sun'' (2015), several nonbinary characters play important roles. All of them use "they" pronouns and are only described in gender-neutral terms. Their gender is not their defining feature - the novel's fictional society treats nonbinary genders as just as normal as binary ones. The author is a nonbinary lesbian.<ref>https://athetos.tumblr.com/post/181997780240/hey-uhhh-go-read-literally-anything-by-sam-farren</ref>
            datastyle = args.subheaderstyle or args['subheaderstyle' .. tostring(num)],
*The main character in "Damsel Knight" by Sam Austin spends much of the book gender questioning, and ends questioning but also settled into an identity somewhere between male and female. She eventually chooses female pronouns and a male name.
            class = args.subheaderclass,
*Alex Fierro is a [[genderfluid]] character from the book series ''Magnus Chase and the Gods of Asgard'', by Rick Riordan. Alex switches between she/her and he/him pronouns, although expressing that she normally uses she/her pronouns. Alex first appears in the book ''The Hammer of Thor,'' and is the love interest of the main character of the series, Magnus Chase. During ''The Hammer  of Thor'', Alex states "I'm gender fluid and transgender" (Riordan 54).
            rowclass = args['subheaderrowclass' .. tostring(num)]
*''Halfway Human'' by Carolyn Ives Gilman is from the perspective of Tedla, an adult nonbinary character in a high science fiction setting. It is worth noting that this portrayal deals with the genderless (called "blands") as a sub-class of people.<ref>https://www.goodreads.com/book/show/1082276.Halfway_Human</ref>
        })
*'' Starless'' by Jacqueline Carey includes a major character who discovers their own identity and unique relationship with gender while travelling all over their world in an effort to prevent an ancient consuming darkness. They encounter a number of different cultural expressions of gender and expected gender roles and eventually find their own place among them.
    end
*Min Lee in the ''Under My Skin'' series by A. E. Dooland is nonbinary and accepts [[he/him]] or [[she/her]] pronouns, depending on the situation. Furthermore, the author has said that "She doesn't really like [[they/them]] (because she feels in many cases it draws too much attention to her gender), but in an event where someone used those pronouns, she'd prefer you just went along with it, too. [...] Min ''does'' typically prefer male-gendered words, such as 'boyfriend' and 'husband' etc."<ref>{{cite web|title=Anonymous asked: What pronouns does Min prefer?|date=July 19, 2019|url=https://asynca.tumblr.com/post/186394898034/what-pronouns-does-min-prefer}}</ref>
end
* A minor character in ''A Tyranny of Queens'' by [[Foz Meadows]] is nonbinary.
* Jules, one of the main characters in ''Finna'' by [[Nino Cipri]], is nonbinary and uses [[singular they]].
*In [[Sassafras Lowrey]]'s ''Roving Pack'', the protagonist, named Click, is [[genderfluid]] and uses [[ze/hir]] pronouns.
*''Felix Ever After'' stars a [[demiboy]] and was written by [[Kacen Callender]] who is a demiboy as well.
*Ben De Backer in ''I Wish You All The Best'' is nonbinary. (Their sister is accepting but the rest of the family isn't.)<ref>{{Cite web |title=A Nonbinary Teen Makes Their Way In The World In 'I Wish You All The Best' |last=Kontis |first=Alethea |work=NPR.org |date=1 June 2019 |access-date=9 May 2020 |url= https://www.npr.org/2019/06/01/726669344/a-nonbinary-teen-makes-their-way-in-the-world-in-i-wish-you-all-the-best}}</ref> The author, [[Mason Deaver]], is also nonbinary.
*In the fantasy books ''Divided Worlds'' and ''The Ascension of Lark'', by Jennifer Ridge, the character Lark is nonbinary and uses they/them pronouns. There is an author's note at the end of ''Divided Worlds'' which specifically describes Lark as "non-binary and androgynous". Note: In ''The Ascension of Lark'' there is some misgendering, homelessness, and physical abuse in the flashbacks to Lark's younger days. Their [[deadname]] is redacted in the text.
*In Blanca & Roja, by Anna-Marie McLemore, the character Page is [[genderqueer]].<ref name="Paxson">{{Cite web |title=Light And Dark, Characters Shine In 'Blanca & Roja' |last=Paxson |first=Caitlyn |work=NPR.org |date=10 October 2018 |access-date=17 May 2020 |url= https://www.npr.org/2018/10/10/655871750/light-and-dark-characters-shine-in-blanca-roja}}</ref>
*In ''The Black Tides of Heaven'' by nonbinary author [[Neon Yang]], gender is not assigned at birth and children get to choose at a gender confirmation later in life. One of the characters, Akeha feels at home with the childhood nonbinary designation.<ref name="Casey">{{Cite web |title=8 Fiction Books with Non-Binary Characters |author=Casey |work=Autostraddle |date=27 November 2018 |access-date=25 May 2020 |url= https://www.autostraddle.com/8-fiction-books-with-non-binary-characters-439192/}}</ref>
*In ''The Brilliant Death'' by Amy Rose Capetta, one of the main characters, Cielo, is nonbinary. (Another main character, who is cis, has to [[crossdress]] for a disguise.)<ref name="Casey" />
*''Long Macchiatos and Monsters'', by Alison Evans, is a romance between a trans guy and a genderqueer person.<ref name="Casey" />
*''An Unkindness of Ghosts'', by [[Rivers Solomon]]. The author has said "Aster is an [[intersex]] [[butch]] [[lesbian]], but maybe [[agender]]. Theo is a nonbinary trans woman. These are my interpretations, but arguments could certainly be made for other classifiers."<ref>{{cite web|archive-url=https://web.archive.org/web/20190625035918/https://www.oif.ala.org/oif/?p=15918|url=https://www.oif.ala.org/oif/?p=15918|date=10 October 2018|archive-date=25 June 2019|title=An Interview with Author Rivers Solomon|last=Falck|first=Alex}}</ref>
*''Lizard Radio'' by [[Pat Schmatz]] has a nonbinary protagonist named Kivali "Lizard" Kerwin.<ref name="Casey" /><ref name="kirk_LIZA">{{Cite web |title=LIZARD RADIO |author= |work=Kirkus Reviews |date=18 May 2015 |access-date=3 October 2020 |url= https://www.kirkusreviews.com/book-reviews/pat-schmatz/lizard-radio/}}</ref>
*''First Spring Grass Fire'', by [[Rae Spoon]], tells the story of a nonbinary kid growing up in the 80s and 90s in Calgary, Canada.<ref name="Casey" />
* Sal in ''Mask of Shadows'' and ''Ruin of Stars'', by Linsey Miller, is genderfluid.
*Lelia in ''The Lost Coast'', by Amy Rose Capetta, is a nonbinary gray-asexual, and described as such in the text.
*The 2019 YA book ''In the Silences'' has many characters who self-define as nonbinary, including the protagonist.<ref>{{cite book|title=In the Silences|year=2019|last=Roberts|first=Ann|publisher=Bella Books|ISBN=9781642471267}}</ref>
*The novel ''Somebody Told Me'' (by [[bigender]] author [[Mia Siegert]]) has a bigender protagonist who goes by Alexis and/or Aleks.<ref name="Lerner">{{Cite web |title=A Book Trailer, Podcast, and Mia Siegert's Playlist for Somebody Told Me |author= |publisher=Lerner Publishing Group |work=The Lerner Blog |date=May 2020 |access-date=5 July 2020 |url= https://lernerbooks.blog/2020/05/a-book-trailer-podcast-and-mia-siegerts-playlist-for-somebody-told-me.html}}</ref>
* Alani Baum, the protagonist of [[John Elizabeth Stintzi]]'s ''Vanishing Monuments'', is nonbinary. Stintzi realized they themself were nonbinary during the writing of this novel.<ref name="VanishingMonuments">{{Cite web |title=Debut author John Elizabeth Stintzi talks poetry, gender identity, and their love of the unconventional |last=Porter |first=Ryan |work=Quill and Quire |date=April 2020 |access-date=24 July 2020 |url= https://quillandquire.com/authors/debut-author-john-elizabeth-stintzi-talks-poetry-gender-identity-and-their-love-of-the-unconventional/}}</ref>
* ''Butterflies, Zebras, Moonbeams'', by Ceilidh Michelle, is a coming-of-age novel starring a [[nonbinary woman]].<ref name="BZM">{{Cite web |title=First Fiction Friday: Butterflies, Zebras, Moonbeams |work=All Lit Up |date=25 October 2019 |access-date=24 July 2020 |url= https://alllitup.ca/Blog/2019/First-Fiction-Friday-Butterflies-Zebras-Moonbeams}}</ref>
* ''The Nap-Away Motel'', by Nadja Lubiw-Hazard, has a supporting character named Ori who is nonbinary.<ref name="NapAwayMotel">{{Cite web |title=First Fiction Friday: The Nap-Away Motel |work=All Lit Up |date=16 August 2019 |access-date=24 July 2020 |url= https://alllitup.ca/Blog/2019/First-Fiction-Friday-The-Nap-Away-Motel}}</ref>
* In ''The Way of Thorn and Thunder'' fantasy series (also called ''The Kynship Chronicles''), by [[Two-Spirit]] author Daniel Heath Justice, there is a race called the Kyn, who recognize three genders: he-Kyn, she-Kyn and zhe-Kyn. These are specifically [[gender]]s, not [[sex]]es, according to reviewer [[Bogi Takács]].<ref name="kynship">{{Cite web |title=QUILTBAG+ Speculative Classics: The Way of Thorn and Thunder by Daniel Heath Justice (Part 1) |authorlink=Bogi Takács |last=Takács |first=Bogi |work=Tor.com |date=21 May 2019 |access-date=24 July 2020 |url= https://www.tor.com/2019/05/21/quiltbag-speculative-classics-the-way-of-thorn-and-thunder-by-daniel-heath-justice-part-1/ }}</ref>
* ''Our Bloody Pearl'', by D.N. Bryn, features a nonbinary siren named Perle who falls in love with a pirate.<ref>https://www.goodreads.com/book/show/40612896-our-bloody-pearl</ref>
* In the Star Wars novel ''Aftermath: Life Debt'', Eleodie Maracavanya is a human pirate who "is of an undisclosed gender separate from male or female", Eleodie mainly uses zhe/zher pronouns, occasionally using he/him or she/her.<ref name="Yip">{{Cite web |title=7 Genderqueer Characters to Celebrate Pride Month |last=Yip |first=By Annaliese |work=CBR |date=11 June 2020 |access-date=14 September 2020 |url= https://www.cbr.com/7-genderqueer-characters-to-celebrate-pride-month/}}</ref>
* In the romance novel ''Unmasked by the Marquess'' (by Cat Sebastian), one of the main characters (Robin) is nonbinary.<ref name="Unmasked">{{Cite web |title=Behind the Book - Unmasked by the Marquess by Cat Sebastian |author=Sebastian, Cat |work=BookPage.com |date=17 April 2018 |access-date=15 September 2020 |url= https://bookpage.com/behind-the-book/22620-twist-trope-break-binary-find-true-love-romance}}</ref>
* In ''What We Left Behind'' by Robin Talley, Toni is a genderqueer student at Harvard in a long-distance relationship.<ref name="Acree">{{Cite web |title=Robin Talley: Young love in a nonbinary world |author=Acree, Cat |work=BookPage.com |date=17 November 2015 |access-date=15 September 2020 |url= https://bookpage.com/interviews/19062-robin-talley-ya}}</ref>
* In the 2016 sci-fi thriller novel ''Zero-G: Book 1'' (by William Shatner and Jeff Rovin), Adsila Waters is described multiple times as "[[pan-gender]]" (used as both an adjective and a noun in the book). "He" and "she" pronouns are variously used for Adsila. Adsila is also able to shapeshift her [[sex|sex characteristics]] to accompany gender switches.
* In the fantasy-mystery novel ''The Last Smile in Sunder City'', by Luke Arnold, one of the side characters is "an ageless nonbinary demon historian".<ref name="SunderCity">{{Cite web |title=Book Review - The Last Smile in Sunder City by Luke Arnold |last=Cohen-Perez |first=Stephanie |work=BookPage.com |date=25 February 2020 |access-date=3 October 2020 |url= https://bookpage.com/reviews/24930-luke-arnold-last-smile-sunder-city-science-fiction-fantasy }}</ref>
* ''Symptoms of Being Human'' stars Riley Cavanaugh, a closeted [[genderfluid]] teenager. The book text never uses a gendered pronoun for Riley and never discloses Riley's [[gender assigned at birth]].<ref name="Stewart">{{Cite web |title=Symptoms of Being Human - Book Review |last=Stewart |first=Darienne |work=commonsensemedia.org |date= |access-date=4 October 2020 |url= https://www.commonsensemedia.org/book-reviews/symptoms-of-being-human}}</ref> Note: the book has some possibly triggering subjects, including child abuse, transphobic violence, bullying, murder, and suicidal thoughts/attempts.<ref name="supe_Symp">{{Cite web |title=Symptoms Of Being Human Summary |author= |work=SuperSummary |date= |access-date=3 October 2020 |url= https://www.supersummary.com/symptoms-of-being-human/summary/}}</ref>
* The protagonist of ''Baker Thief'', by Claudie Arseneault, is [[bigender]] and [[aromantic]].<ref name="Simkiss">{{Cite web |title=Author Interview: Xan West |author=Simkiss, Ceillie |work=Let's Fox About It |date= |access-date=5 October 2020 |url= https://letsfoxaboutit.com/author-interview-xan-west/}}</ref>
* In ''The Tiger's Watch'' by Julia Ember, the protagonist Tashi is [[genderfluid]] and uses [[they/them]] pronouns. The author notes that "Being [[Misgendering|misgendered]] and forced to change their appearance in order to hide is a source of conflict in the novel. It is not the central plot conflict, though."<ref>{{cite web|url=https://www.goodreads.com/questions/738992-this-sounds-like-an-awesome-story-i-m|title=Shade asked: This sounds like an awesome story! I'm confused by the use of 'their' instead of 'her' or 'him' though.}}</ref>
* In ''Just Girls'' by Rachel Gold, the side character Nico is nonbinary and uses various [[neopronouns|nonstandard pronouns]] such as [[English_neutral_pronouns#Per|per]] and [[English_neutral_pronouns#Yo|yo]]. Note: the main story centers on a [[cis]] woman who pretends she is trans in order to protect another woman who actually is trans.<ref>{{cite web |title=Just Girls: Danika at The Lesbrary's review|date=15 September 2014|url=https://www.goodreads.com/review/show/1056011765?book_show_action=true}}</ref>
* In ''Love Spell'', by Mia Kerick, the protagonist Chance is out as [[gay]] but feels uncertain about their gender identity, "being stuck in the gray area between girl and boy".<ref name="good_Love">{{Cite web |title=Love Spell |author= |work=goodreads.com |date= |access-date=9 October 2020 |url= https://www.goodreads.com/book/show/25550836-love-spell}}</ref>
* In the mystery-fantasy book ''Out of Salem'' by Hal Schrieve, the protagonist Z Chilworth is nonbinary and recently became a zombie. Content note: the story contains body horror, family abuse, suicidal ideation, police violence toward children and marginalized groups, fatphobic and homophobic bullying, and discussion of medical abuse.<ref>https://www.goodreads.com/book/show/40585222-out-of-salem</ref>
* ''Stranger Skies'', by Katje Van Loon, has a planet whose society recognizes five genders: woman, man, [[agender]], [[trigender]], and [[genderqueer]].
* Eli/Ellie, the protagonist of ''Genderfluid: A Cinderella Story'' (by Bridget Quinones) is, as the title says, [[genderfluid]]. Note: story contains transphobic violence and the T-slur.<ref>https://www.goodreads.com/book/show/45880850-genderfluid</ref>
* ''Love Yourself: A Genderfluid Romance'', by N. R. Blythe, is a sexually explicit romance featuring a genderfluid person who goes by Cora when in girl mode and Corey when in boy mode.
* ''Spin With Me'', by Ami Polonsky, is a middle-school novel featuring Ollie who is nonbinary.<ref name="Koehler">{{Cite web |title=#ReadWithPride: Spin With Me by Ami Polonsky |last=Koehler |first=Mimi |work=The Nerd Daily |date=9 September 2020 |access-date=19 October 2020 |url= https://www.thenerddaily.com/spin-with-me-by-ami-polonsky/}}</ref>
* In ''The Empress of Salt and Fortune'' and ''When the Tiger Came Down the Mountain'' by Nghi Vo, the character Chih is nonbinary.<ref name="Ladd">{{Cite web |title=Review: The Empress of Salt and Fortune by Nghi Vo |last=Ladd |first=Christina |work=The Nerd Daily |date=29 December 2019 |access-date=19 October 2020 |url= https://www.thenerddaily.com/the-empress-of-salt-and-fortune-nghi-vo/}}</ref>
* In ''The Girl of Hawthorn and Glass'', by [[Adan Jerreat-Poole]], the character Tav is nonbinary.<ref name="Deo">{{Cite web |title=Review: The Girl of Hawthorn and Glass by Adan Jerreat-Poole |last=Deo |first=Annie |work=The Nerd Daily |date=7 September 2020 |access-date=19 October 2020 |url= https://www.thenerddaily.com/review-the-girl-of-hawthorn-and-glass-by-adan-jerreat-poole/ }}</ref> The author is also nonbinary.<ref>{{cite tweet| user=AdanJerreat|number=973313816548315138|date= 12 March 2018|title=Non-binary thoughts: coming out as nb feels like giving myself permission to stop judging myself by gendered standards, and to play with performing boyishness or androgyny as well as femme #genderplay #nonbinary}}</ref>
* ''Down to the Bone'', a young-adult book by Mayra Dole, contains a character named Tazer who self-describes as [[genderqueer]] and a [[boi]]. [[He/him]] pronouns are used for Tazer. Another character describes him as "Tazer is a boy ''and'' a girl". Note: The main plot involves the protagonist being kicked out of her home because of her sexuality, and there are some LGBT-phobic opinions expressed by characters, as well as use of words that could be triggering to readers, such as "homo", "lesbo", and "[[dyke]]".<ref>{{cite book|title=Down to the Bone|year=2008|last= Dole|first= Mayra L.}}</ref>
* ''Sexarchate: Hot Equations'', by Lia Meyers, is a sexually explicit sci-fi with a nonbinary character. From the same publisher (Less Than Three Press), ''A Party for Lola'' by Caitlin Ricci and ''Beginnings'' by Alexa Black also contain nonbinary characters.<ref>https://lessthanthreepress.tumblr.com/search/non-binary</ref> However, these books may be hard to find, as the publisher closed down in 2019.
* Rose and Timothy in the ''Wolf House'' series by Mary Borsellino are nonbinary, as confirmed by the author, although different identity terminology is used in the text.<ref>{{cite tweet|last=Borsellino |first=Mary |user=sharpest_rose |number=1252789205551288320|date=21 April 2020|title=Rose and Timothy in Wolf House are both nonbinary, though the term wasn't in as wide use in 2008 so they use other language to describe it.}}</ref>
* In ''Jilted'' by Lilah Suzanne, Link is "a genderqueer artist who lives life by their own rules".<ref name="stor_Jilt">{{Cite web |title=Jilted (print edition) |author= |work=Interlude Press |date= |access-date=28 October 2020 |url= https://store.interludepress.com/products/jilted-print-edition}}</ref>
* In ''Only See You'', by J.D. Chambers, Mal Copol is nonbinary.<ref>https://www.goodreads.com/book/show/38227512-only-see-you</ref>
* In ''An Unsuitable Heir'', by K.J. Charles, the character Pen Starling says "I'm not a woman, but that doesn't make me a man either." He/him pronouns are used for Pen, although Pen states that these pronouns don't feel ideal. Note: much of the plot involves an "imminent threat to force Pen to [..] conform to a binary gender."<ref>https://www.goodreads.com/book/show/33841918-an-unsuitable-heir</ref>.
* ''A Boy Called Cin'', by Cecil Wilde, is a romance novel told from the point of view of Tom, a mostly-closeted genderqueer billionaire who falls for a trans man.<ref>{{cite web|archive-url=https://web.archive.org/web/20190609104330/https://justlovereviews.com/2017/07/22/trans-book-month-corey-alexander/| url=https://justlovereviews.com/2017/07/22/trans-book-month-corey-alexander/|archive-date=9 June 2019|last=Alexander|first=Corey| authorlink=Corey Alexander|title=A Baker's Dozen of Stories Centering Non-Binary Characters}}</ref>
* In ''Defying Convention'', also by Cecil Wilde, the main character AJ is a [[femme]] genderqueer person who uses singular "they" pronouns.<ref name="Evans2017">{{Cite web |title=My gender didn't exist in fiction when I was growing up – so I wrote myself into existence |author=Evans, Alison |authorlink=Alison Evans |work=the Guardian |date=27 February 2017 |access-date=2 November 2020 |url= https://www.theguardian.com/books/2017/feb/28/my-gender-didnt-exist-in-fiction-when-i-was-growing-up-so-i-wrote-myself-into-existence}}</ref>
* ''The Order of the Pure Moon Reflected in Water'', by Zen Cho, has a nonbinary protagonist.<ref name="readsrainbow">{{Cite web |title=Book Recs: Twitter’s Favourite Trans Books |author= |work=Reads Rainbow |date=13 May 2020 |access-date=2 November 2020 |url= https://readsrainbow.wordpress.com/2020/05/13/book-recs-twitters-favourite-trans-books/}}</ref>
* ''River of Teeth'', by [[Sarah Gailey]], has a nonbinary protagonist.<ref name="readsrainbow" />
* ''Upright Women Wanted'', by [[Sarah Gailey]], has a nonbinary character.<ref name="readsrainbow" />
* ''Raven Stratagem'', by Yoon Ha Lee, has nonbinary side characters.<ref name="readsrainbow" />
* ''Phoenix Extravagant'', by Yoon Ha Lee, has a nonbinary protagonist.<ref name="readsrainbow" />
* ''Sing for the Coming of the Longest Night'', by Katherine Fabian & Iona Datt Sharma, has a genderqueer protagonist and genderqueer side characters.<ref name="readsrainbow" />
* ''Once & Future'', by Amy Rose Capetta & Cori McCarthy, has a nonbinary side character.<ref name="readsrainbow" />
* ''Why We Fight'', by T.J. Klune, has a bigender protagonist.<ref name="readsrainbow" />
* ''The Four Profound Weaves'', by [[R.B. Lemberg]], has a nonbinary side character.<ref name="readsrainbow" />
* ''Euphoria Kids'', by [[Alison Evans]], has a nonbinary protagonist.<ref name="readsrainbow" />
* ''The Melting Queen'', by Bruce Cinnamon, has a genderfluid protagonist.<ref name="readsrainbow" />
* ''Moth & Whisper'', by Ted Anderson & Jen Hickman, has a genderqueer protagonist.<ref name="readsrainbow" />
* ''Life Minus Me'', by Sara Codair, has a nonbinary protagonist.<ref name="readsrainbow2">{{Cite web |title=Book Releases: 2020 Books With Non-Cis Protagonists |author= |work=Reads Rainbow |date=16 January 2020 |access-date=2 November 2020 |url= https://readsrainbow.wordpress.com/2020/01/16/book-releases-2020-books-with-non-cis-protagonists/}}</ref>
* ''Spellhacker'', by M. K. England, has a nonbinary love interest character.<ref name="readsrainbow2" />
* ''To the Flame'', by A. E. Ross, has a nonbinary protagonist.<ref name="readsrainbow2" />
* ''Queens of Noise'', by Leigh Harlen, has a nonbinary protagonist.<ref name="readsrainbow2" />
* ''Bloodsister'', by Alia Hess, has a nonbinary protagonist.<ref name="readsrainbow2" />
* ''The Strangeworlds Travel Agency'', by L.D. Lapinski, has a nonbinary side character.<ref name="readsrainbow2" />
* ''Into the Real'', by [[Z Brewer]], has a genderqueer protagonist.<ref name="readsrainbow2" />
* ''Ana on the Edge'', by [[A. J. Sass]], has a nonbinary protagonist.<ref name="readsrainbow2" />
* ''My Maddy'', by Gayle E. Pitman, is a children's book about a [[Family|nonbinary parent]].<ref name="good_MyMa">{{Cite web |title=My Maddy |author= |work=goodreads.com |date= |access-date=2 November 2020 |url= https://www.goodreads.com/book/show/43271383-my-maddy}}</ref>
* In '' Every Day'', a novel by David Levithan, the protagonist named A wakes up every day in a different person's body. Each person whose body A inhabits has a clear-cut gender identity, but A themself says, "I didn’t think of myself as a boy or a girl—I never have."<ref>{{cite web |archive-url =https://web.archive.org/web/20190131040504if_/https://outwritenewsmag.org/2018/06/trans-characters-in-fiction/|archive-date=31 January 2019|url =https://outwritenewsmag.org/2018/06/trans-characters-in-fiction/|title=Trans Characters in Fiction|date=27 June 2018|last=Miceli|first=Cami}}</ref> The novel was adapted into a 2018 film.<ref>https://www.imdb.com/title/tt7026672/</ref>
* ''Fool for Love'', by Lisa Lees, is "A young adult coming of age / [[coming out]] romance with [[intersex]] and genderqueer main characters and a happy ending." ''A Triangular Attraction'' is the 2012 sequel, a "mystery novel with intersex, trans and genderqueer characters." Both can now be read free online in HTML or EPUB format on [https://lisalees.com/ll/books/index.html the author's website].
* ''Under Shifting Stars'', by Alexandra Latos, has a genderfluid protagonist and a nonbinary love interest.<ref>https://www.goodreads.com/book/show/44286277-under-shifting-stars</ref>
*''The Water Outlaws'', a fantasy epic inspired by the 14th-century Chinese novel ''Water Margin'', is by [[genderqueer]] author [[S. L. Huang]] and has "a high percentage of gender nonconformity and of gender identities that in modern times we would call trans or nonbinary."<ref name="wateroutlaws">{{Cite web |title=S. L. Huang’s New Take on the Most Famous Chinese Novel You’ve Never Read in English: Announcing The Water Outlaws |work=Tor.com |date=15 October 2020 |access-date=7 November 2020 |url= https://www.tor.com/2020/10/15/book-announcements-s-l-huang-the-water-outlaws/}}</ref>
* ''The Vela'', a multi-author serially-published space opera, has a nonbinary character named Niko who uses [[they/them]] pronouns. There are other nonbinary characters as well. Yoon Ha Lee, one of the authors, revealed that in the original drafts "Niko was originally a [[cisgender]]ed male character named Oskar".<ref name="Hadi_thevela">{{Cite web |title=Unveiling ‘The Vela’: An interview with Becky Chambers, S. L. Huang and Yoon Ha Lee (Part 1) |last=Hadi |first=Shana E. |work=The Stanford Daily |date=6 March 2019 |access-date=7 November 2020 |url= https://www.stanforddaily.com/2019/03/06/unveiling-the-vela-an-interview-with-becky-chambers-s-l-huang-and-yoon-ha-lee-part-1/}}</ref>
*In ''Night Shine'', by Tessa Gratton, the character Kirin Dark-Smile is nonbinary.<ref name="NightShine">{{Cite web |title=A Mismatched Adventure: Night Shine by Tessa Gratton |last=Bourke |first=Liz |work=Tor.com |date=10 September 2020 |access-date=7 November 2020 |url= https://www.tor.com/2020/09/10/book-reviews-night-shine-by-tessa-gratton/}}</ref>
* ''Rom & Yuli'', by Amara Lynn, is a post-apocalyptic urban fantasy romance between a man and a nonbinary person.<ref name="lets_LowH">{{Cite web |title=Low Heat Romance Recommendations |author= |work=Let's Fox About It |date= |access-date=8 November 2020 |url= https://letsfoxaboutit.com/low-heat-romance-recommendations/ |at=page 3 }}</ref>
* ''Belle Révolte'', by Linsey Miller, has nonbinary side characters.<ref name="bellerev">{{Cite web |title=Review: Belle Révolte by Linsey Miller |author= |work=Let's Fox About It |date= |access-date=8 November 2020 |url= https://letsfoxaboutit.com/review-belle-revolte-by-linsey-miller/}}</ref>
* ''Jack Long and the Demon Deal'', by L. J. Hamlin, has a nonbinary side character.<ref name="jacklong">{{Cite web |title=Cover Reveal: Jack Long and the Demon Deal by L. J. Hamlin |author= |work=Let's Fox About It |date= |access-date=8 November 2020 |url= https://letsfoxaboutit.com/cover-reveal-jack-long-and-the-demon-deal-by-l-j-hamlin/ }}</ref>
* ''Dragons Past Dawn'', by Ennis Rook Bashe, has two nonbinary protagonists: Sely, who uses [[they/them]] pronouns, and Andreas, who uses [[English_neutral_pronouns#Xe.2C_xir|xe/xir]] pronouns.
* ''The Thirty Names of Night'' by Zeyn Joukhadar, stars a closeted Syrian American nonbinary boy who uses he/him pronouns.<ref name="30names">{{Cite web |title=Review: 'The Thirty Names of Night' ties past to present in compelling tale of nonbinary identity |last=Barbiero |first=Delfina V |work=USA TODAY |date=25 November 2020 |access-date=27 November 2020 |url= https://www.usatoday.com/story/entertainment/books/2020/11/24/review-the-thirty-names-night-delves-into-nonbinary-identity/6407219002/}}</ref><ref>[https://twitter.com/ZeynJoukhadar/status/1331252073434898435 Twitter thread by Zeyn Joukhadar], 24 November 2020</ref>
* In the novel ''Star Wars: Last Shot'', Taka Jamoreesa is nonbinary and uses [[singular they]] pronouns. This was confirmed by the author on Twitter.<ref>{{cite tweet|user=djolder|number=1305540927008788483|title=This is still happening in translations and it's such a disappointment (See the translation and tweet below in the thread). Taka Jamoreesa is nb. Their pronouns are they/them. That's it. Find a way, translators, editors, publishers. Any other gendering is incorrect, it's erasure.|date=14 September 2020}}</ref>
* In Karolina Fedyk's Polish-language novel ''Skrzydła'' (''Wings''), there is a nonbinary character Eliri who is referred to with [[Gender neutral language in Polish|oni/ich pronouns]].<ref name="telesep">{{Cite web |title=[PL] Czerwcowe czytanie pełne dumy |author= |work=Teleseparatist |date=6 June 2019 |access-date=29 November 2020 |url= https://teleseparatist.wordpress.com/2019/06/06/pl-czerwcowe-czytanie-pelne-dumy/ |language=pl }}</ref><ref>{{cite web|url=https://zaimki.pl/korpus#oni-ich |title=Niebinarna polszczyzna w tekstach kultury |language=pl}}</ref>
* Fantasy novel ''In The Ravenous Dark'', by A.M. Strickland, has a nonbinary [[asexual]] character.<ref>{{cite tweet|title=*whispers* I have an upcoming YA dark fantasy with a blood mage who's pan, a lesbian love interest (also a mage), an enby/ace best friend (also a mage), and a m/f/f poly relationship if you want more queer with your magic use:|user=AdriAnneMS|number=1270142172285689856|date=8 June 2020}}</ref>
* ''Blood Borne'', by Archer Kay Leah, stars a nonbinary character Adren who uses ce/cir pronouns.<ref>https://www.queeromanceink.com/book/blood-borne/</ref>
* ''What Blooms Beneath'', by A.D. Ellis, is a fantasy/scifi romance between Kellan, a pansexual man, and Rhône, a nonbinary [[intersex]] person.<ref>https://www.queeromanceink.com/book/what-blooms-beneath/</ref>
* In ''The Lauras'', by Sara Taylor, teenaged Alex says they have never felt like a boy nor a girl. Content note: there is a graphic scene in which a man sexually assaults Alex.<ref name="good_Darq">{{Cite web |title=Darque Dreamer's review of The Lauras |author= |work=goodreads.com |date=6 September 2017 |access-date=9 December 2020 |url= https://www.goodreads.com/review/show/2110137433?book_show_action=true}}</ref>
* ''Documenting Light'', by EE Ottoman, is a romance between the characters Grayson and Wyatt; Wyatt is nonbinary.<ref>https://www.goodreads.com/book/show/31922116-documenting-light</ref>
* ''Bloodlaced'', by Courtney Maguire, is a paranormal romance including the character Asagi who is "Both a man and a woman".<ref name="Bloodlaced">{{Cite web |title=Bloodlaced |author= |work=Queeromance Ink |date= |access-date=9 December 2020 |url= https://www.queeromanceink.com/book/bloodlaced/ |quote=Both a man and a woman }}</ref>
* ''The Flowers of Time'', by A. L. Lester, is a romance between Edie and Jones; Jones is nonbinary and "probably [[Demisexual|demi/gray asexual]]", per the author.<ref name="FlowersOfTime">{{Cite web |title=The Flowers of Time |author= |work=Queeromance Ink |date= |access-date=9 December 2020 |url= https://www.queeromanceink.com/book/the-flowers-of-time/ |quote=I started out with Jones, who I knew was non-binary and Edie, who's sexuality can best be described as 'pragmatic'. And as their journey over the mountains progressed it became clear that Jones was probably demi/gray asexual, as well. }}</ref>
* ''Quick Fire'', by Alex Silver, is an "urban fantasy romance featuring a trans man and an [[asexual]] non-binary person".<ref>https://www.queeromanceink.com/book/quick-fire/</ref>
* ''Shameful Scars'', by A. L. Williams, is a paranormal romance starring Gabriel, a nonbinary angel.<ref name="amaz_Sham">{{Cite web |title=Customer Review: Shameful scars |author=Cheryl_cajun |work=amazon.com |date=14 June 2020 |access-date=9 December 2020 |url= https://www.amazon.com/gp/customer-reviews/R23Z4KKA7LKDFB/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8&ASIN=B089G8N99X}}</ref>
* ''Of Kindred and Stardust'', by Archer Kay Leah, is a sci-fi polyamorous romance. One of the main characters, Mack Ainsley Tsallis, is nonbinary and uses [[xe/xir]] pronouns. Content note: Mentions of transphobia in the character's past, and a reference to xir [[deadname]].
* ''Light Up The Dark'', by Suki Fleet, has a minor character named Loz who uses [[singular they]] pronouns. Another character says about Loz: "They don't want to identify as a boy or a girl."
* ''Kink Aware'', by Morticia Knight, is a BDSM romance book starring a [[genderqueer]] character named Cruella. Cruella uses singular they, and the other protagonist, a man named Ray, says that Cruella is "the first person I've wanted who doesn't identify as male or female." Content note: references to past physical abuse.<ref>{{cite book|title=Kink Aware|last=Knight|first=Morticia|year=2018|publisher=Pride Publishing}}</ref>
* ''All That Entails'', by E.M. Hamill: "A [[gender-fluid]] prince finds an unexpected ally in an arranged marriage with a [[transgender man]]."<ref>https://www.queeromanceink.com/book/all-that-entails/</ref> The genderfluid Prince Dorian is described as having a "fluid nature", "suspended between male and female, one rising, the other ebbing without pattern or reason."
* In ''Recipe for Two'', by Tia Fielding and Lisa Henry, Wyatt Abbot is "struggling to come to terms with the fact that he's [[genderfluid]]."<ref>https://www.amazon.com/Recipe-Two-Tia-Fielding-ebook/dp/B085FZZGJ9/</ref>
* ''Whirlwind'', by Reese Morrison, is a collection of interconnected short romance/sex stories. Dakota is [[intersex]] and nonbinary, describing their gender identity as "a combination of the best of both genders and something else beside." Carla is [[genderqueer]] and [[Masculine of center|masculine-of-center]] and uses [[he/him]] pronouns. Charlie is a [[gender questioning]] [[butch]] who uses [[she/her]].<ref>{{cite book|title=Whirlwind |last=Morrison |first=Reese|year=2020|edition=Kindle}}</ref>
*''Best Game Ever: A Virtuella Novel'', by R R Angell, is a sci-fi young adult story centering on "a group of gay, nonbinary, and straight college nerds".<ref>https://www.amazon.com/Best-Game-Ever-Virtuella-Novel/dp/1949532097/</ref>
*In the children's book (ages 8-12) ''The Moon Within'', by Aida Salazar, Marco is genderfluid. Content note: Part of the plot involves main character Celi getting her first period.
*In ''No More Heroes'', by Michelle Kan, the character Fang is genderfluid and aroace.<ref>{{cite web|url=https://www.amazon.com/No-More-Heroes-Michelle-Kan-ebook/product-reviews/B010TDJ0BM/ref=cm_cr_dp_d_show_all_btm?ie=UTF8&reviewerType=all_reviews|title=Customer Reviews for No More Heroes|website=Amazon}}</ref>
* ''Finding Me'', by Stella Rainbow, is a romance between a [[genderfluid]] [[nonbinary]] person and a [[gender-nonconforming]] man.<ref>{{cite book |title=Finding Me|last=Rainbow|first=Stella|year=2020}}</ref>
* ''Love Kills Twice'', by Rien Gray, is a romance between a woman and the nonbinary assassin she hires to kill her abusive husband.<ref>https://www.queeromanceink.com/book/love-kills-twice/</ref>
* The protagonist of ''Annabel'', written by Kathleen Winter, is [[intersex]] and raised as male, including genital surgery and being put on masculinizing medical treatments. They are given the name "Wayne" but sometimes go by "Annabel", and they identify "at least in part" with femininity/girlhood.<ref>{{cite book |title=Annabel |last=Winter |first=Kathleen |year=2010 |publisher=House of Anansi Press |quote=...he wondered what would happen if he could tell her they were both girls, at least in part.}}</ref> The protagonist's father takes great strides to encourage his child to be more masculine, whereas multiple women encourage the child's feminine side. Wayne/Annabel has been interpreted as nonbinary by some readers, with one reviewer saying the character is "both male/female in both body and soul".<ref>{{cite web |url=https://www.goodreads.com/review/show/487958071?book_show_action=false |date=28 December 2012 |title=Laurie's Reviews > Annabel |access-date=13 February 2021}}</ref> Content note: Coercively assigned gender, infant genital surgery, sexual assault, ectopic pregnancy, some inaccurate/unrealistic depiction of intersex experiences.
* ''No Man of Woman Born'', by Ana Mardoll, is a collection of fantasy short stories with a range of non-cis protagonists, including trans women, trans men, genderfluid protagonists, bigender protagonists, and agender protagonists.<ref name="IllustratedPage">{{Cite web |title=LGBTQIAP Protagonists in Fantasy and Science Fiction |author= |work=The Illustrated Page |date= |access-date=20 February 2021 |url= https://www.theillustratedpage.net/diversity-in-fantasy-and-science-fiction/lgbtq-protagonists-in-fantasy-and-science-fiction/}}</ref>
* In the romance novel ''Gypsy's Rogue'', by Layla Dorine, main character Gypsy is genderfluid and uses they/them pronouns.<ref name="qri-gypsy">{{Cite web |title=Gypsy's Rogue |author= |work=Queeromance Ink |date= |access-date=23 February 2021 |url= https://www.queeromanceink.com/book/gypsys-rogue/}}</ref>
* In the novel ''Anger is a Gift'', by [[Mark Oshiro]], the main character has a nonbinary friend.<ref name="AngerGift">{{Cite web |title=Interview with Mark Oshiro, Author of ANGER IS A GIFT |last=Sridhar |first=Priya |work=BOOK RIOT |date=30 May 2018 |access-date=4 March 2021 |url= https://bookriot.com/mark-oshiro-interview/}}</ref>
* The YA book ''Can't Take That Away'', by genderqueer author [[Steven Salvatore]], stars teen protagonist Carey Parker who is also genderqueer.<ref name="CTTA">{{Cite web |title=Q&A With Steven Salvatore, Can’t Take That Away |last=Lavoie |first=Alaina |work=We Need Diverse Books |date=9 March 2021 |access-date=11 March 2021 |url= https://diversebooks.org/qa-with-steven-salvatore-cant-take-that-away/}}</ref>
* The Micah Grey trilogy, by Laura Lam, stars Micah, an intersex nonbinary teen who runs away from home to join the circus.
* In the short story collection ''Sarahland'', by Sam Cohen, the story "Gemstones" features a genderqueer couple, Manny and Ry.<ref name="Sarahland">{{Cite web |title=Heartbreak and Existential Hope in 'Sarahland' |last=MacAllen |first=Ian |work=Chicago Review of Books |date=17 March 2021 |access-date=27 March 2021 |url= https://chireviewofbooks.com/2021/03/17/heartbreak-and-existential-hope-in-sarahland/}}</ref>


=== Comics/Webcomics/Graphic Novels===
local function renderImages()
    if args.image then
        args.image1 = args.image
    end
    if args.caption then
        args.caption1 = args.caption
    end
    local imagenums = getArgNums('image')
    for k, num in ipairs(imagenums) do
        local caption = args['caption' .. tostring(num)]
        local data = mw.html.create():wikitext(args['image' .. tostring(num)])
        if caption then
            data
                :tag('div')
                    :cssText(args.captionstyle)
                    :wikitext(caption)
        end
        addRow({
            data = tostring(data),
            datastyle = args.imagestyle,
            class = args.imageclass,
            rowclass = args['imagerowclass' .. tostring(num)]
        })
    end
end


*''[http://erinptah.com/catperson/ But I'm A Cat Person]'' by Erin Ptah - Urban fantasy webcomic featuring a [[bigender]] character - Timothy/Camellia Mattei - as well as numerous 'Beings' who are able to take on both male and female forms. Also features various LGB characters. Updates three times a week.
local function renderRows()
*''[http://chaoslife.findchaos.com Chaos Life]'' by A. Stiffler and K. Copeland - A light-hearted, semi-autobiographical webcomic about the everyday idiosyncrasies of an [[agender]] person, their female partner, and their cats. Also covers various issues relating to GSM topics, politics, and mental health. Updates weekly.
    -- Gets the union of the header and data argument numbers,
*''[http://www.egscomics.com/ El Goonish Shive]'' includes a main character who identifies as genderfluid several years into the comic. Author Dan Shive has said that Tedd, like the author, has always been genderfluid but did not realise there was a word for it or even a concept of being nonbinary until much later in life. The comic also includes various other LGBT characters as well as shapeshifting technology.
    -- and renders them all in order using addRow.
*''[http://eths-skin.tumblr.com/ Eth's Skin]'' by Sfé R. Monster - Fantasy webcomic featuring a genderqueer protagonist - Eth. Fairly new, but the ''[http://eths-skin.tumblr.com/about 'About' page]'' suggests plans to include more nonbinary characters. Updates weekly.
    local rownums = union(getArgNums('header'), getArgNums('data'))
*''[http://ignitionzero.com/comics/ Ignition Zero]'' by Noel Arthur Heimpel - An urban fantasy webcomic that features a genderqueer character - Neve Copeland - as one of its protagonists. Updates weekly.
    table.sort(rownums)
*''[http://jobsatisfactioncomic.tumblr.com/ Job Satisfaction]'' by Jey Barnes - a slice of life webcomic about two queer nonbinary demon summoners - Lemme and Sinh - who live together. The comic is rated PG-13 and updates once a week.
    for k, num in ipairs(rownums) do
*''[http://kyleandatticus.tumblr.com/ Kyle &amp; Atticus]'' by Sfé R Monster - Webcomic about the adventures of a genderqueer teenager, Kyle, and their robot friend, Attticus. Currently on hiatus.
        addRow({
*[http://nwain.com Nwain: The Knight Who Wandered Dream] by Terrana Cliff - Fantasy webcomic with nonbinary main character, a knight from a culture with five genders. Extensively animated. PG-13. Updates when able.
            header = args['header' .. tostring(num)],
*''[http://rainlgbt.smackjeeves.com/comics/ Rain]'' by Jocelyn Samara - A light-hearted high-school webcomic that follows a trans girl and her friends, including Ky(lie), an AFAB genderfluid character who alternates between presenting as male and female. Also features a range of other LGBTQ characters. Updates three times a week.
            label = args['label' .. tostring(num)],
*''[http://www.robot-hugs.com/ Robot Hugs]'' - semi-autobiographical webcomic by an author of nonbinary gender, which frequently addresses nonbinary issues and other aspects of gender politics. Also frequently covers the subject of mental health. Updates twice weekly.
            data = args['data' .. tostring(num)],
*The 'New 52' version of [https://en.wikipedia.org/wiki/Secret_Six_(comics)#New_52 Secret Six] introduces new character Kami / Porcelain, who is genderfluid and has been shown presenting as male, female and androgynously.
            datastyle = args.datastyle,
*''[http://www.discordcomics.com/shades-cover/ Shades of A (NSFW)]'' by Tab Kimpton - Webcomic that focuses on [[asexuality|asexual]] relationships, as well as exploring various aspects of kink, and features a prominent nonbinary character (JD). Contains nudity and BDSM. Updates twice a week.
            class = args['class' .. tostring(num)],
*[http://www.mspaintadventures.com/?s=6 Homestuck] introduced an androgynous character named Davepetasprite^2 [http://www.mspaintadventures.com/?s=6&amp;p=009779] that was formed by the fusion of two other characters. They establish that they are confused about their gender but happy to be what they've become and start using gender neutral pronouns (they/them). It also has other androgynous characters like Calliope.
            rowclass = args['rowclass' .. tostring(num)],
*''[https://www.gocomics.com/phoebe-and-her-unicorn/2019/02/05 Phoebe and her Unicorn]'' by Dana Simpson has a nonbinary minor character named Infernus, the Unicorn of Death. Phoebe uses the pronoun "neigh" for Infernus.<ref>[https://www.gocomics.com/phoebe-and-her-unicorn/2019/02/09 Phoebe and Her Unicorn by Dana Simpson for February 09, 2019]</ref> The comic avoids "othering" nonbinary identities by having Phoebe say that "Humans have non-binary people too."<ref>[https://www.gocomics.com/phoebe-and-her-unicorn/2019/02/05 Phoebe and Her Unicorn by Dana Simpson for February 05, 2019]</ref>
            rowstyle = args['rowstyle' .. tostring(num)],
*''[http://tapastic.com/series/6ses 6ses]'' by Kagome features an agender protagonist.
            rowcellstyle = args['rowcellstyle' .. tostring(num)],
*''[http://tapastic.com/series/Eri Eri the Cyborg]'' by Ren features an agender protagonist.
            dataid = args['dataid' .. tostring(num)],
*''[http://tapastic.com/episode/40617 Snailed It]'' by SnaiLords, who "identifies with both genders" and described themselves as an "androgynous snail".
            labelid = args['labelid' .. tostring(num)],
*''[https://tapastic.com/episode/212183 Tattoo'd]'' by Antonia Bea features an intersex, genderfluid protagonist.
            headerid = args['headerid' .. tostring(num)],
*''[http://tapastic.com/series/Your-Local-Non-Binary Your Local Non-Binary]'' is written by and features non-binary person Eliot Lime.
            rowid = args['rowid' .. tostring(num)]
*''Moonstruck'' is a comic about fantasy creatures which includes a nonbinary centaur named Chet, who uses they/them pronouns.<ref>https://teammoonstruckcomic.tumblr.com/post/164448014217/</ref><ref>https://comics.fandom.com/wiki/Moonstruck#Main_Characters</ref>
        })
*[[Heartwood: Non-Binary Tales of Sylvan Fantasy]] is "the first ever non-binary comics anthology, featuring 22 young adult stories made entirely by cartoonists who identify as a non-binary gender". Some stories have characters discuss being one gender and then the another, others may just refer to a character by 'they' pronouns.
    end
*In volume six of Marvel Comics' series ''The New Warriors'', a nonbinary superhero was introduced. Their name "Snowflake" and their brother's name "Safespace" drew widespread backlash.<ref name="Villarreal">{{Cite web |title=Marvel criticized for first non-binary superhero named “Snowflake” |last=Villarreal |first=Daniel |work=LGBTQ Nation |date=20 March 2020 |access-date=14 May 2020 |url= https://www.lgbtqnation.com/2020/03/marvel-criticized-first-non-binary-superhero-named-snowflake/ }}</ref>
end
*''On a Sunbeam'' by Tillie Walden has a nonbinary character, Elliot.<ref name="Casey" /><ref name="Burt">{{Cite web |title=“On a Sunbeam,” the Sci-Fi Comic That Reimagines Utopia |last=Burt |first=Stephanie |work=The New Yorker |date=13 April 2019 |access-date=7 September 2020 |url= https://www.newyorker.com/books/page-turner/on-a-sunbeam-the-sci-fi-comic-that-reimagines-utopia}}</ref>
* Main character Mogumo in the manga ''Love Me for Who I Am'' is nonbinary.<ref>https://www.anime-planet.com/manga/love-me-for-who-i-am</ref>
* Graphic novel ''The Prince and the Dressmaker'', by Jen Wang. The author has said that "To me, Sebastian is someone who identifies with different modes of [[gender expression]] and is comfortable alternating between both masculine and feminine. Genderqueer is probably the best descriptor. But I'm also open to readers' interpretations of how they see the character. If a reader feels that this story is just the first step to Sebastian discovering they're trans, or if they feel Sebastian is a cis male that likes to dress up I'm happy with all of that!"<ref name="Orsini">{{Cite web |title='The Prince And The Dressmaker' Is A Genderqueer Fairy Tale For All Ages |last=Orsini |first=Lauren |work=Forbes |date=12 February 2018 |access-date=6 September 2020 |url= https://www.forbes.com/sites/laurenorsini/2018/02/12/the-prince-and-the-dressmaker-is-a-genderqueer-fairy-tale-for-all-ages/#256677825625}}</ref>
* Creators of the webcomic ''Mahou Shonen FIGHT!'' have "confirmed that Raji and Raji's fiancé both identify as gender queer and non-conforming".<ref>{{cite journal|last=Hatfield|first=N.K.|year=2015 |title=TRANSforming Spaces: Transgender Webcomics as a Model for Transgender Empowerment and Representation within Library and Archive Spaces|journal=Queer Cats Journal of LGBTQ Studies|volume=1 |issue=1 |page=64 |url=https://escholarship.org/uc/item/3g15q00g}}</ref>
*In the graphic novel ''Open Earth'', Franklin, one of the love interests, is nonbinary and uses [[they/them]] pronouns.<ref name="OpenEarth">{{Cite web |title=rachel ☾'s review of Open Earth |author=rachel ☾ |work=goodreads.com |date=25 January 2020 |access-date=26 October 2020 |url= https://www.goodreads.com/review/show/2907532655?book_show_action=true}}</ref>
*In the graphic novel ''Mooncakes'', written by Suzanne Walker and illustrated by Wendy Xu, one of the main characters is Tam Lang, a nonbinary werewolf.<ref name="Mooncakes">{{Cite web |title=Mooncakes by Suzanne Walker |author= |work=LibraryThing.com |date= |access-date=26 October 2020 |url= https://www.librarything.com/work/23289223}}</ref>
*The graphic novel ''Test'', written by Chris Sebela, has a nonbinary main character named Aleph Null. [[Singular they]] pronouns are used for Aleph, and in a character bio on them, it says "Gender: Various given."<ref name="comi_Test">{{Cite web |title=Test: An Interview With Chris Sebela |author= |work=Comics Pit |date=13 August 2019 |access-date=27 October 2020 |url= https://comicspit.com/2019/08/13/test-an-interview-with-chris-sebela/}}</ref>
*''[https://tapas.io/series/Friends-With-Benefits1/info Friends With Benefits]'' is a webcomic that revolves around a genderfluid asexual person, Eri, who is struggling with his love life. (Eri is pronoun indifferent, and [[he/him]] is used by other characters for Eri.)
*  Debuting in ''DC’s Very Merry Multiverse'', Jess Chambers/Kid Quick, part of the Teen Justice team from Earth-11, is [[genderfluid]]. They will also appear in ''Future State: Justice League''.<ref name="McGuireLiam">{{Cite web |title=New Teen Justice Team Debuts In DC's Very Merry Multiverse |last=McGuire |first=Liam |work=ScreenRant |date=2 November 2020 |access-date=15 November 2020 |url= https://screenrant.com/teen-justice-future-state-earth-11-dc/ |quote=I suggested that Kid Quick could be Earth-11's first genderfluid character, and once editors saw Eleonora Carlini's terrific take on the character design, there was suddenly a lot of interest in them for stories beyond the Merry Multiverse Special in December. }}</ref><ref name="AdamsTim">{{Cite web |title=DC Comics Introduces a Non-Binary Flash in Future State |last=Adams |first=Tim |work=CBR |date=2 November 2020 |access-date=15 November 2020 |url= https://www.cbr.com/dc-comics-non-binary-flash-future-state/}}</ref>
* ''Supergirl #19'', co-written by Steve Orlando and [[Vita Ayala]], introduces a nonbinary character named Lee Serano.<ref name="StewartCK">{{Cite web |title=Authentic Trans & Nonbinary Representation in Comics Requires More Than Just a Plot Twist |last=Stewart |first=C.K. |work=Paste Magazine |date=23 March 2018 |access-date=15 November 2020 |url= https://www.pastemagazine.com/comics/the-backstagers/authentic-trans-nonbinary-representation-in-comics/}}</ref>
*[https://assignedmale.tumblr.com/ Assigned Male], a webcomic revolving around a trans girl and often addressing trans issues, has some nonbinary characters, for example Ciel, who also stars in a spinoff novel.
*[https://www.webtoons.com/en/challenge/wish/list?title_no=71914 Wish] is a fantasy webcomic starring Seth who self describes as a "dashing enby".<ref>https://www.webtoons.com/en/challenge/wish/the-story-begins-/viewer?title_no=71914&episode_no=3</ref>


===Movies ===
local function renderNavBar()
    if not args.name then return end
   
    root
        :tag('tr')
            :tag('td')
                :attr('colspan', '2')
                :css('text-align', 'right')
                :wikitext(navbar{
                    args.name,
                    mini = 1,
                })
end


* Regarding the 2001 film ''Hedwig and the Angry Inch'', John Cameron Mitchell (Hedwig's actor and the movie's writer/director) has said that Hedwig is "more than a woman or a man. She's a gender of one and that is accidentally so beautiful."<ref name="Ouzounian">{{Cite web |title=John Cameron Mitchell to host Hedwig and the Angry Inch sing-along in Toronto |last=Ouzounian |first=Richard |work=thestar.com |date=18 June 2014 |access-date=24 September 2020 |url= https://www.thestar.com/entertainment/stage/2014/06/18/singalong_hedwig_and_the_angry_inch_comes_to_lgbt_film_fest.html}}</ref>
local function renderItalicTitle()
*In ''The Kings of Summer'' (2013), Biaggio asserts that he doesn't see himself as "having a gender."
    local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title'])
* The 2016 film ''Zoolander 2'' has a short scene with a model named All (played by [[cisgender]] actor Benedict Cumberbatch). In response to being asked "Are you like, a male model or a female model?" All states "All is not defined by binary constructs." Another character then asks about All's genitals and doesn't get an answer. The [[pronoun]] "hermself" is used for All. One reviewer wrote about the scene, "Hollywood can surely do better than this."<ref name="Menta-Z2">{{Cite web |title=Nonbinary Characters in Film Deserve More Than ‘Zoolander 2’ |author=Menta, Anna |work=Decider |date=11 June 2019 |access-date=17 November 2020 |url= https://decider.com/2019/06/11/nonbinary-characters-in-film-zoolander-2/}}</ref>
    if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then
*In the 2018 film ''Upgrade'', the hacker does not identify with any gender and wishes to not be called "Jamie".<ref>''Upgrade'' Directed by Leigh Wannell. Blumhouse Productions, Goalpost Pictures, Nervous Tick Productions, 2018</ref><ref name="Freeman2018">{{Cite web |title=Upgrade Ending Explained: What REALLY Happened With STEM |last=Freeman |first=Molly |work=ScreenRant |date=1 June 2018 |access-date=24 September 2020 |url= https://screenrant.com/upgrade-movie-ending-stem-explained/ |page=2 }}</ref>
        root:wikitext(mw.getCurrentFrame():expandTemplate({title = 'italic title'}))
*In the 2019 British short film ''Orin & Anto'', Orin specifically says "I don't subscribe to the [[gender binary]], my pronouns are [[Singular they|they and them]]."<ref>https://orinandanto.com/</ref>
    end
*In ''John Wick 3'' (2019), the Adjudicator is nonbinary and played by [[Asia Kate Dillon]], who is also nonbinary.<ref name="Parsons-JW3">{{Cite web |title=Asia Kate Dillon's John Wick 3 character is non-binary because they suggested it |last=Parsons |first=Vic |work=PinkNews |date=27 May 2019 |access-date=17 November 2020 |url= https://www.pinknews.co.uk/2019/05/27/asia-kate-dillon-john-wick-non-binary/}}</ref>
end
*In ''0009: The Sharks Make Contact'' (2019), although not a single character's gender is ever explicitly mentioned, the characters Raisorshoorkle (the main protagonist), Shoogledocking (the main villain) and the Iki God (the overarching creator, who is named after the director) go by they/them pronouns. The Iki God went by she/her pronouns in the previous movie, "0000: A Shark Odyssey". A sequel titled "0010: The Sharks Make Contact - Part 2", came out in December of 2019.<ref>https://www.imdb.com/title/tt10315070/</ref> They will return in the shared universe film "Forevers 2: Age of Teeth" in December of 2020.<ref>https://www.imdb.com/title/tt11434668/fullcredits/</ref>
*In the 2020 American film ''Two Eyes'', [[Kate Bornstein]] plays a nonbinary therapist at a psychiatric center.<ref>https://www.outfestnow.com/two-eyes</ref> In introducing herself to another character, she says, "Me, I am nonbinary trans, and my pronouns are 'she' and 'they'. How about you? What pronouns would make you feel most comfortable?"<ref name="ReynoldsAug2020">{{Cite web |title=Kate Bornstein & Ryan Cassata Swap Pronouns in Exclusive Two Eyes Clip |last=Reynolds |first=Daniel |work=The Advocate |date=27 August 2020 |access-date=27 August 2020 |url= https://www.advocate.com/film/2020/8/27/kate-bornstein-ryan-cassata-swap-pronouns-exclusive-two-eyes-clip}}</ref>
* The 2020 film ''Under My Skin'' focuses on a nonbinary person named Denny, who is played by four different nonbinary actors throughout the movie: [[Liv Hewson]], [[Bobbi Salvör Menuez]], [[Lex Ryan]], and [[Chloe Freeman]].<ref name="Gush">{{Cite web |title=Under My Skin is the non-binary romance we’ve all been waiting for |last=Gush |first=Charlotte |work=i-D |date=29 October 2020 |access-date=6 November 2020 |url= https://i-d.vice.com/en_uk/article/epddge/under-my-skin-nonbinary-movie-starring-liv-hewson-bobbi-salvor-menuez-chloe-freeman-lex-ryan}}</ref> (The film is unrelated to the ''Under My Skin'' book series listed in [[Nonbinary_gender_in_fiction#Books_and_other_literature|the literature section of this page]].<ref>{{cite tweet|last=Dooland|first=A. E.|user=Asynca|number=1323487561243746304|date=2 November 2020|title=Just a coincidence, it seems! Looking forward to seeing this}}</ref>)
* The 2020 short film ''Royalty'' is about a nonbinary teen named Jax.<ref>https://www.imdb.com/title/tt13162262/</ref>


===Plays===
local function renderTrackingCategories()
    if args.decat ~= 'yes' then
        if #(getArgNums('data')) == 0 and mw.title.getCurrentTitle().namespace == 0 then
            root:wikitext('[[Category:Articles which use infobox templates with no data rows]]')
        end
        if args.child == 'yes' and args.title then
            root:wikitext('[[Category:Pages which use embedded infobox templates with the title parameter]]')
        end
    end
end


*In [[Taylor Mac]]'s off-Broadway show ''Hir'', the character Max is [[genderqueer]] and [[transmasculine]], using ze/hir pronouns.<ref name="Scheck">{{Cite web |title='Hir': Theater Review |last=Scheck |first=Frank |work=The Hollywood Reporter |date=11 August 2015 |access-date=2 May 2020 |url= https://www.hollywoodreporter.com/review/taylor-macs-hir-theater-review-838231}} '''Note: Article misgenders character.''' </ref>
local function _infobox()
*In [[Rhiannon Collett]]'s play ''Wasp'', the protagonist Wasp is [[genderqueer]] and is to be played by only nonbinary actors.<ref name="mqli_Wasp">{{Cite web |title=Wasp |author= |work=Marquis Literary |date= |access-date=9 May 2020 |url= http://mqlit.ca/plays/wasp/}}</ref>
    -- Specify the overall layout of the infobox, with special settings
* In the play ''Wink'', written by Neil Koenigsberg, the title character is nonbinary.<ref name="Wink">{{Cite web |title=New play "Wink" gives non-binary actor a chance to shine |last=King |first=John Paul |work=Los Angeles Blade: America's LGBT News Source |date=14 December 2018 |access-date=22 August 2020 |url= https://www.losangelesblade.com/2018/12/14/new-play-wink-gives-non-binary-actor-a-chance-to-shine/}}</ref><ref name="Wink2">{{Cite web |title="Wink": Timely Story of Homeless LGBTQA Youth Comes to New York Stage |last=Ryan |first=Jed |work=HuffPost |date=April 2017 |access-date=22 August 2020 |url= https://www.huffpost.com/entry/wink-timely-story-of-homeless-lgbtqa-youth-comes_b_58f522d6e4b048372700daa3}}</ref>
    -- if the infobox is used as a 'child' inside another infobox.
* In the musical ''Head Over Heels'', Pythio is nonbinary and was played by the trans woman Peppermint.<ref name="Duffy2018">{{Cite web |title=NYT theatre critic apologises for 'insensitive' review of Drag Race star's Broadway musical |last=Duffy |first=Nick |work=PinkNews |date=31 July 2018 |access-date=24 September 2020 |url= https://www.pinknews.co.uk/2018/07/31/new-york-times-theatre-critic-apologises-for-insensitive-review-of-peppermint-musical-head-over-heels/}}</ref>
    if args.child ~= 'yes' then
* In ''The Pink Unicorn'', the main character's child is genderqueer and says "I'm not a girl. Or anyway, I'm not all girl. I'm a boy, too."<ref name="pinkunicorn">{{Cite web |title=Review: 'The Pink Unicorn' Leads a Mother Into Unknown Territory |last=Vincentelli |first=By Elisabeth |work=New York Times |date=19 May 2019 |access-date=2 March 2021 |url= https://www.nytimes.com/2019/05/19/theater/the-pink-unicorn-alice-ripley-review.html}}</ref>
        root = mw.html.create('table')
       
        root
            :addClass((args.subbox ~= 'yes') and 'infobox' or nil)
            :addClass(args.bodyclass)
           
            if args.subbox == 'yes' then
                root
                    :css('padding', '0')
                    :css('border', 'none')
                    :css('margin', '-3px')
                    :css('width', 'auto')
                    :css('min-width', '100%')
                    :css('font-size', '100%')
                    :css('clear', 'none')
                    :css('float', 'none')
                    :css('background-color', 'transparent')
            else
                root
                    :css('width', '22em')
            end
        root
            :cssText(args.bodystyle)
   
        renderTitle()
        renderAboveRow()
    else
        root = mw.html.create()
       
        root
            :wikitext(args.title)
    end


===Table Top Games / Role Playing Games===
    renderSubheaders()
    renderImages()
    renderRows()
    renderBelowRow() 
    renderNavBar()
    renderItalicTitle()
    renderTrackingCategories()
   
    return tostring(root)
end


* [https://astrolago-press.myshopify.com/products/faerie-fire-digital-edition Faerie Fire a 5e Supplemental], is a D&D 5th edition supplemental. It features queer characters to add to any D&D 5e experience.  
local function preprocessSingleArg(argName)
**Monarch (non-binary, uses they/them): "The ageless and paint-smeared Monarch has held the seat of fey power ever since the schism. How they inherited the throne is unknown."
    -- If the argument exists and isn't blank, add it to the argument table.
**Tallisin Vos (genderfluid, uses he/him): "Tallisin splits his time between two physical forms: a fey man and a vixen, both of which are equally his true identity."
    -- Blank arguments are treated as nil to match the behaviour of ParserFunctions.
* In the TTRPG [https://tabletop.itch.io/arcana-academy Arcana Academy], there is a nonbinary sample character who is the transfiguration teacher.
    if origArgs[argName] and origArgs[argName] ~= '' then
        args[argName] = origArgs[argName]
    end
end


===TV (live-action)===
local function preprocessArgs(prefixTable, step)
    -- Assign the parameters with the given prefixes to the args table, in order, in batches
    -- of the step size specified. This is to prevent references etc. from appearing in the
    -- wrong order. The prefixTable should be an array containing tables, each of which has
    -- two possible fields, a "prefix" string and a "depend" table. The function always parses
    -- parameters containing the "prefix" string, but only parses parameters in the "depend"
    -- table if the prefix parameter is present and non-blank.
    if type(prefixTable) ~= 'table' then
        error("Non-table value detected for the prefix table", 2)
    end
    if type(step) ~= 'number' then
        error("Invalid step value detected", 2)
    end
   
    -- Get arguments without a number suffix, and check for bad input.
    for i,v in ipairs(prefixTable) do
        if type(v) ~= 'table' or type(v.prefix) ~= "string" or (v.depend and type(v.depend) ~= 'table') then
            error('Invalid input detected to preprocessArgs prefix table', 2)
        end
        preprocessSingleArg(v.prefix)
        -- Only parse the depend parameter if the prefix parameter is present and not blank.
        if args[v.prefix] and v.depend then
            for j, dependValue in ipairs(v.depend) do
                if type(dependValue) ~= 'string' then
                    error('Invalid "depend" parameter value detected in preprocessArgs')
                end
                preprocessSingleArg(dependValue)
            end
        end
    end


*The Canadian magical-realism comedy series ''The Switch'' features a non-binary character, Chris, who uses "zie/zir" pronouns, and works as an assassin.
    -- Get arguments with number suffixes.
*The Netflix sci-fi series ''The Umbrella Academy'' features Klaus, who according to the actor is "not necessarily a man, he's kind of just this creature that's not bound by traditional societal norms like 'man', 'woman', 'masculinity', 'femininity'. He just sort of… is.” Klaus is played by a cis man and called "he" throughout.<ref>"[https://www.refinery29.com/en-us/2019/02/225048/umbrella-academy-klaus-robert-sheehan-ex-girlfriend-dating-sexuality Get Ready To Stan ''The'' ''Umbrella Academy's'' Robert Sheehan]", Rachel Paige, February 22 2019, ''Refinery29''.</ref>
    local a = 1 -- Counter variable.
*The Amazon mini-series ''Good Omens'' features the Four Horsemen of the Apocalypse, and Pollution (who replaced Pestilence at some point in the past few centuries) is nonbinary, and is referred to as "sir" by another character and with they/them pronouns by the narrator. They are played by Lourdes Faberes.
    local moreArgumentsExist = true
*Taylor Mason in season 2 of ''Billions'' is nonbinary and introduces themself with they/them pronouns. They're played by [[Asia Kate Dillon]], who realised they were nonbinary while auditioning for the role.<ref>"[https://www.refinery29.com/en-us/2017/02/142575/kate-dillon-billions-taylor-nonbinary-gender-identity-pronouns Meet ''Billions''' Asia Kate Dillon, TV's First Non-Binary Star]", Refinery29.com, 27 February 2017.</ref>
    while moreArgumentsExist == true do
*Bishop in the Fox drama series ''Deputy'' is nonbinary canonically, thanks to a suggestion by the character's actor [[Bex Taylor-Klaus]] who is also nonbinary.<ref name="Bentley">{{Cite web |title=Bex Taylor-Klaus Hopes Their Nonbinary 'Deputy' Character Will Save Lives |last=Bentley |first=Jean |work=The Hollywood Reporter |date=14 February 2020 |access-date=23 April 2020 |url= https://www.hollywoodreporter.com/live-feed/bex-taylor-klaus-deputy-binary-reveal-1279351 }}</ref>
        moreArgumentsExist = false
*On ''One Day at a Time'', Syd (played by Sheridan Pierce) is the nonbinary romantic partner of Elena. Syd uses [[singular they]] pronouns and is uncomfortable with binary-gendered terms such as "girlfriend".<ref name="Heim">{{Cite web |title=What is "non-binary"? Learn from our favorite TV characters|last=Heim |first=Bec |work=Film Daily |date=26 March 2020 |access-date=24 April 2020 |url= https://filmdaily.co/news/non-binary-tv-characters/}}</ref>
        for i = a, a + step - 1 do
*The comedy-drama miniseries ''Fucking Adelaide'' (aka ''F*!#ing Adelaide'') features a [[genderfluid]] child, Cleo, played by nonbinary actor [[Audrey Mason-Hyde]].<ref name="Tedmanson">{{Cite web |title=How non-binary teenager Audrey Mason-Hyde is breaking down gender identity stereotypes, one label at a time |last=Tedmanson |first=Sophie |work=Vogue Australia |date=1 January 2019 |access-date=3 May 2020 |url= https://www.vogue.com.au/culture/lifestyle/how-nonbinary-teenager-audrey-masonhyde-is-breaking-down-gender-identity-stereotypes-one-label-at-a-time/news-story/9c213c8adcd6395a7ff8abf41592e4d3}}</ref>
            for j,v in ipairs(prefixTable) do
*In the drama ''David Makes Man'', the character Mx Elijah/Ms Elijah (played by nonbinary actor [[Travis Coles]]) is [[genderqueer]] and [[gender nonconforming]]<ref name="OWN">{{Cite web |title=Meet Mx. Elijah {{!}} David Makes Man |author=OWN |work=YouTube |date=8 August 2019 |access-date=20 June 2020 |url= https://www.youtube.com/watch?v=dtX0OwY5X4I}}</ref>, and according to Coles, has no pronoun preference.<ref name="DavidMakesMan">{{Cite web |title='David Makes Man' star Travis Coles on Ms Elijah and representation of Black queer people |author=MEAWW |work=YouTube |date=10 August 2019 |access-date=20 June 2020 |url= https://www.youtube.com/watch?v=3ItZzo2-0gA}}</ref>
                local prefixArgName = v.prefix .. tostring(i)
*The second season of ''Good Trouble'' has a nonbinary character named Joey played by Daisy Eagan. Joey, who uses [[they/them]] pronouns, is dating the lesbian character Alice, and asks to be called "partner" instead of "girlfriend".<ref name="Gilchrist">{{Cite web |title='Good Trouble' Tackles Coming Out as Nonbinary — While Dating! |last=Gilchrist |first=Tracy E. |work=The Advocate |date=17 July 2019 |access-date=20 June 2020 |url= https://www.advocate.com/television/2019/7/16/good-trouble-tackles-coming-out-nonbinary-while-dating}}</ref>
                if origArgs[prefixArgName] then
* Mo, a main character on ''Zoey's Extraordinary Playlist'', is genderfluid.<ref>https://lezwatchtv.com/character/mo-3/</ref>
                    moreArgumentsExist = true -- Do another loop if any arguments are found, even blank ones.
* In the fourth season of ''Degrassi: Next Class'', Yael comes out as [[genderqueer]].<ref>{{cite web|url=https://www.tvguide.com/news/degrassi-next-class-yael-genderqueer/|work=TV Guide|date=7 July 2017|last=Gennis|first=Sadie|title=Degrassi: Next Class: [Spoiler] Comes Out as the Show's First Genderqueer Character!}}</ref>
                    preprocessSingleArg(prefixArgName)
* The Brazilian drama series ''Todxs Nosotrxs'' (also known as ''Todxs Nós'' or ''He, She, They.'') stars Rafa, an 18-year-old pansexual and nonbinary person who decides to leave their unaccepting family and go live with their cousin.<ref>https://www.hbolapress.com/programming/search/388#about</ref><ref>https://www.imdb.com/title/tt11212828/</ref><ref name="Canhisares">{{Cite web |title=Todxs Nós discute gênero com humor, mas nem só de "militância" vive a série |trans-title= |last=Canhisares |first=Mariana |work=Omelete |date=20 March 2020 |access-date=22 August 2020 |url= https://www.omelete.com.br/series-tv/todxs-nos-primeiras-impressoes |language=pt}}</ref>
                end
* The third season of ''Star Trek: Discovery'' introduces a nonbinary character named Adira, played by nonbinary actor [[Blu del Barrio]].<ref name="STDiscovery">{{Cite web |title=‘Star Trek: Discovery’ Introduces First-Ever Non-Binary And Trans Characters With Blu Del Barrio And Ian Alexander |last=Ramos |first=Dino-Ray |work=Deadline |date=2 September 2020 |access-date=7 September 2020 |url= https://deadline.com/2020/09/star-trek-discovery-non-binary-transgender-characters-blu-del-barrio-ian-alexander-lgbtq-diversity-inclusion-representation-1234568890/}}</ref>
                -- Process the depend table if the prefix argument is present and not blank, or
* The sci-fi Netflix series ''Another Life'' includes among its characters a nonbinary psychologist named Zayn whose pronouns are [[ze/hir]]. Ze is played by nonbinary actor [[JayR Tinaco]].<ref name="LeightonDore">{{Cite web |title=Australian actor JayR Tinaco's role in 'Another Life' helped them come out as non-binary |last=Leighton-Dore |first=Samuel |work=Topics |date=31 July 2019 |access-date=15 September 2020 |url= https://www.sbs.com.au/topics/pride/agenda/article/2019/07/30/australian-actor-jayr-tinacos-role-another-life-helped-them-come-out-non-binary}}</ref>
                -- we are processing "prefix1" and "prefix" is present and not blank, and
*In season three of the Netflix series ''Sex Education'', there is a nonbinary student named Cal. Cal is played by nonbinary actor [[Dua Saleh]].<ref name="López">{{Cite web |title='Sex Education' is adding a non-binary character to its cast for season 3 |last=López |first=Canela |work=Insider |date=24 September 2020 |access-date=1 October 2020 |url= https://www.insider.com/netflixs-sex-education-adds-black-non-binary-character-to-cast-2020-9}}</ref>
                -- if the depend table is present.
* In ''Lovecraft Country'', there is a [[Two-Spirit]] character named Yahima Maraokoti in the episode "A History of Violence". The character is played by a [[cisgender]] woman and is soon murdered by one of the main characters.<ref name="Yahima">{{Cite web |title=Lovecraft Country Creator Apologizes for “Failed” Attempt at Two-Spirit Representation |last=Sanders |first=Wren |work=them. |date=13 October 2020 |access-date=25 October 2020 |url= https://www.them.us/story/lovecraft-country-failed-two-spirit-representation }}</ref>
                if v.depend and (args[prefixArgName] or (i == 1 and args[v.prefix])) then
* In season one, episode seven of the legal drama ''All Rise'' (titled "Uncommon Women and Mothers"), Emily's client is a homeless nonbinary youth named Jax, played by [[transmasculine]] actor JJ Hawkins.<ref name="AllRise">{{Cite web |title=All Rise Review: Uncommon Women and Mothers (Season 1 Episode 7) |last=Wyneken |first=Caitlin |work=Tell-Tale TV |date=5 November 2019 |access-date=27 October 2020 |url= https://telltaletv.com/2019/11/all-rise-review-uncommon-women-and-mothers-season-1-episode-7/}}</ref> Jax is misgendered during a court proceeding and their lawyer speaks up in objection, convincing the judge to enforce use of the correct [[they/them]] pronouns for Jax.<ref>[https://www.instagram.com/p/CE-BHDBhtrE/ Instagram post] 10 September 2020</ref>
                    for j,dependValue in ipairs(v.depend) do
* In the crime drama ''Big Sky'', Jerrie is a [[transfeminine]] nonbinary person played by nonbinary actor [[Jesse James Keitel]].<ref name="ReynoldsOct2020">{{Cite web |title=Nonbinary Actors and Creators Have Some Advice for Hollywood |last=Reynolds |first=Daniel |work=The Advocate |date=21 October 2020 |access-date=27 October 2020 |url= https://www.advocate.com/exclusives/2020/10/21/future-lgbtq-tv-nonbinary-visionaries}}</ref>
                        local dependArgName = dependValue .. tostring(i)
* In ''Love in the Time of Corona'', [[Tommy Dorfman]] plays the nonbinary hairstylist Oscar.<ref name="Ramos-Corona">{{Cite web |title='Love In The Time Of Corona': Freeform Sets Leslie Odom Jr., Nicolette Robinson, Tommy Dorfman, Rainey Qualley And 4 More For Limited Series Event |last=Ramos |first=Dino-Ray |work=Deadline |date=29 June 2020 |access-date=17 November 2020 |url= https://deadline.com/2020/06/love-in-the-time-of-corona-freeform-leslie-odom-jr-nicolette-robinson-tommy-dorfman-rainey-qualle-gil-bellows-rya-kihlstedt-ava-bellows-l-scott-caldwell-1202972774/}}</ref>
                        preprocessSingleArg(dependArgName)
* In season three, episode two of ''The Detour'', there is a nonbinary character named Sarah and a [[Two-spirit]] character called Big Poppa.<ref name="Haskoor-Detour">{{Cite web |title=‘The Detour’ Season 3 Is Tackling Gender Norms & Stereotypes Left And Right |last=Haskoor |first=Michael |work=Decider |date=11 February 2018 |access-date=17 November 2020 |url= https://decider.com/2018/02/11/the-detour-season-3-is-tackling-gender-norms-stereotypes-left-and-right/}}</ref>
                    end
* In the live-action remake of ''Cowboy Bebop'', Grencia Mars Elijah Guo Eckener, nicknamed Gren, is nonbinary and played by nonbinary actor [[Mason Alexander Park]].<ref name="RomanoCB">{{Cite web |title=Cowboy Bebop live-action series officially makes anime character Gren nonbinary |trans-title= |last=Romano |first=Nick |work=Entertainment Weekly |date=19 November 2020 |access-date=19 November 2020 |url= https://ew.com/tv/cowboy-bebop-gren-nonbinary-mason-alexander-park/ |language=EN}}</ref>
                end
* The drama series ''P-Valley'' follows several people who work at a Mississippi strip club named "The Pynk". The club's owner is Uncle Clifford, a nonbinary [[genderfluid]] person who uses [[she/her]] pronouns.<ref name="P-Valley">{{Cite web |title=P-Valley's Nicco Annan on Black queerness, serving looks, and why 'femininity is total strength' |author=Opie, David |work=Digital Spy |date=7 December 2020 |access-date=18 December 2020 |url= https://www.digitalspy.com/tv/ustv/a33132271/p-valley-nicco-annan-uncle-clifford-katori-hall-interview/ |quote=And Uncle Clifford is a beautiful, black, non-binary queer who identifies with the pronoun 'she'. She's very gender fluid.}}</ref> Uncle Clifford is played by Nicco Annan, an out gay man.<ref name="esse_Meet">{{Cite web |title=Meet Nicco Annan: 'P-Valley's' Uncle Clifford Who's Giving Us Life |last=Penrice |first=Ronda Racha |work=Essence |date=27 July 2020 |access-date=18 December 2020 |url= https://www.essence.com/entertainment/meet-nicco-annan-p-valleys-uncle-clifford-whos-giving-us-life/ |quote='As a Black man and as a Black gay man, it's very seldom that I get the opportunity to tell such a rich, lush story that really means something and that I really feel speaks to my community and can uplift us," he says of ''P-Valley''. }}</ref>
            end
* Season 2, episode 5 of ''Batwoman'' introduced the nonbinary character Evan Blake, who is a friend of protagonist Kate Kane. Evan is played by Lincoln Clauss.<ref name="Batwoman>{{Cite web |title=Batwoman Writer Explains the Importance of the Show's New Nonbinary Character |last=Erao |first=Math |work=CBR |date= |access-date=27 February 2021 |url= https://www.cbr.com/batwoman-nonbinary-evan-blake-writer-coments/}}</ref>
        end
* The British comedy ''Maxxx'' has a nonbinary character named Roxx (played by Sonny Charlton), who uses [[they/them]] pronouns and is a romantic interest of Amit.<ref name="Maxxx">{{Cite web |title=Hulu's 'Maxxx' Features a Refreshing Nonbinary Romantic Interest |last=Henderson |first=Taylor |work=Pride.com |date=5 August 2020 |access-date=4 March 2021 |url= https://www.pride.com/tv/2020/8/05/hulus-maxxx-features-refreshing-nonbinary-romantic-interest}}</ref>
        a = a + step
* BBC America's ''The Watch'' (2021) features Cheery Littlebottom, who is referred to by they/them and she/her pronouns and is played by [[Jo Eaton-Kent]] (who is trans and whose pronouns are also they/them and she/her).
    end
 
end
===Webseries ===
 
function p.infobox(frame)
*In ''Carmilla'', the character Lafontaine is nonbinary and goes by they/them/their pronouns.  They have been confirmed as nonbinary by the show's creators, and have hinted at it through the series though it has never been a major plot point. They are played by nonbinary actor [[Kaitlyn Alexander]].
    -- If called via #invoke, use the args passed into the invoking template.
*''[https://www.youtube.com/channel/UCdi8HPMwFpYIf3qQlv7A0fg?&amp;ab_channel=Couple-ish Couple-ish]'', a light-hearted rom-com webseries, features a nonbinary main character (Dee). Dee goes by they/them/their pronouns, and explicitly describes themselves as nonbinary in one episode.
    -- Otherwise, for testing purposes, assume args are being passed directly in.
*The short webseries ''These Thems'' features a [[genderqueer]] character named Vero, played by nonbinary actor [[Vico Ortiz]].<ref name="TheseThems">{{Cite web |title='These Thems' Is the Must-See Comedy That Centers Nonbinary People |last=Gilchrist |first=Tracy E. |work=The Advocate |date=26 February 2020 |access-date=13 May 2020 |url= https://www.advocate.com/television/2020/2/26/these-thems-must-see-comedy-centers-nonbinary-people}}</ref>
    if frame == mw.getCurrentFrame() then
*The webseries ''[https://www.youtube.com/playlist?list=PLX1W43ZgDnWErDCU_6ejOBLln1NozzBj7 Dinette]'' is a remake of the 1982 movie ''Diner'', but with a non-male cast instead of the original's all-male cast. The character Jaq is nonbinary and is played by nonbinary writer [[Jude Dry]].<ref name="Mosthof">{{Cite web |title='Dinette' Gives Queer Women and Nonbinary Characters a Place to Go |last=Mosthof |first=Mariella |work=INTO |date=2 December 2018 |access-date=1 June 2020 |url= https://www.intomore.com/culture/dinette-gives-queer-women-and-nonbinary-characters-a-place-to-go}}</ref>
        origArgs = frame:getParent().args
*In ''School Spirit: An Unlikely Webseries'', the character Charley Condomine is [[demigender]].<ref name="lezw_Char">{{Cite web |title=Charley Condomine |author= |work=LezWatch.TV |date= |access-date=16 June 2020 |url= https://lezwatchtv.com/character/charley-condomine/}}</ref>
    else
* ''I Hear You'' is a Canadian medical drama following the life of Dr. Alyssa Hartt, a family medicine practitioner. Her patients include nonbinary people.<ref>http://www.ihearyouseries.com/</ref>
        origArgs = frame
*In ''The Adventures of Jamie Watson (and Sherlock Holmes)'', Sherlock Holmes is [[demigender]] and aroace.<ref>https://lezwatchtv.com/character/sherlock-holmes/</ref>
    end
* The "Brave House" arc of the webseries ''The Feels'' focuses on the polyamorous throuple of [[genderqueer]] S (played by [[Sara Ramirez]]), [[transfeminine]] Nina ([[Ianne Fields Stewart]]), and [[transmasculine]] Lenny ([[Shantira Jackson]]).<ref name="BraveHouse">{{Cite web |title=Why We Should All Live in The Feels’ Brave House |author=Shayna Maci Warner |work=Bisexual Resource Center |date=15 August 2019 |access-date=20 October 2020 |url= https://biresource.org/why-we-should-all-live-in-the-feels-brave-house/ }}</ref>
   
* The protagonist of ''[https://www.transmonogamist.com/ Trans Monogamist]'' is a nonbinary dating columnist.
    -- Parse the data parameters in the same order that the old {{infobox}} did, so that
* In the Canadian webseries ''Babes'', one of the protagonists is AJ, a nonbinary man, played by nonbinary man [[T. Thomason]].<ref name="Ratchford">{{Cite web |title=Getting To Know The Creator Of ‘Babes,’ The Web’s Cutest Queer Series |last=Ratchford, Sarah |work=Medium |date=6 January 2017 |access-date=22 October 2020 |url= https://medium.com/the-establishment/getting-to-know-the-creator-of-babes-the-cutest-queer-series-on-the-web-ab4e0325e5f0}}</ref><ref name="JMarie">{{Cite web |title=Watch ‘Babes’, A Web Series About a Queer Playboy |author=J Marie |work=KitschMix |date=10 May 2017 |access-date=22 October 2020 |url= https://kitschmix.com/watch-babes-web-series-queer-playboy/}}</ref>
    -- references etc. will display in the expected places. Parameters that depend on
*''Damaged Goods'' is a webseries "centered around four messy creatives of color attempting to survive in the city of Chicago."<ref name="dama_Abou">{{Cite web |title=About — Damaged Goods |author= |work=Damaged Goods |date= |access-date=10 November 2020 |url= https://damagedgoodswebseries.com/about}}</ref> One of the characters is Caleb, described by the creators of the series as [[genderqueer]]<ref name="dama_Abou" /> and a [[gay man]].<ref name="Wittich">{{Cite web |title=New Web Series Finds Beauty in Being Queer and Messy |author=Wittich, Jake |work=PAPER |date=25 March 2019 |access-date=10 November 2020 |url= https://www.papermag.com/damaged-goods-vam-studios-2632757932.html?rebelltitem=19#rebelltitem19}}</ref> Caleb is played by gay model Chufue Yang.<ref name="Cadogan">{{Cite web |title=Meet the model claiming his agency dropped him for being gay and Asian |last=Cadogan |first=Dominic |work=Dazed |date=22 August 2018 |access-date=10 November 2020 |url= https://www.dazeddigital.com/fashion/article/41073/1/ford-model-agency-chufue-yang-dropped-him-for-being-gay-asian-chicago}}</ref>
    -- another parameter are only processed if that parameter is present, to avoid
*''Critical Role'' is a webseries "where a bunch of nerdy-ass voice actors sit around and play Dungeons & Dragons." [https://criticalrole.fandom.com/wiki/Mollymauk_Tealeaf Mollymauk Tealeaf] was played by [https://www.imdb.com/name/nm0043552/ Taliesin Jaffe], described by the DM [https://www.imdb.com/name/nm2233310/ Matthew Mercer] as genderfluid and bisexual. Molly used he/him pronouns.
    -- phantom references appearing in article reference lists.
*''The Oxventure'' is another webseries of people playing Dungeons & Dragons. In the "Faire Trial" campaign, a human paladin NPC named Max Williams plays a small role. Max uses [[they/them]] pronouns.
    preprocessSingleArg('child')
 
    preprocessSingleArg('bodyclass')
===Video games===
    preprocessSingleArg('subbox')
 
    preprocessSingleArg('bodystyle')
*In ''Crypt of the Necrodancer,'' the game's artist stated that the unlockable character Bolt is genderqueer and uses they/them pronouns; this was further confirmed by the game's official Twitter.{{citation needed}}
    preprocessSingleArg('title')
*In ''Transistor'', the gender marker for Bailey Gilande in her character file is 'X', commonly used by, or in regards to, non-binary people.
    preprocessSingleArg('titleclass')
*''[https://www.choiceofgames.com/versus-the-lost-ones/ VERSUS: The Lost Ones]'' by Zachary Sergi (published in 2015 by Choice of Games LLC) is a sci-fi interactive novel where it's possible to play a nonbinary character. The player's character, Thomil, comes from a planet where everyone telepathically shares their thoughts and feelings with one another. A couple chapters into the story, the player is asked about their character's gender. They can choose from six options: a cisgender woman, transgender woman, cis man, trans man, intersex, or "I don't subscribe to any gender categories". Choosing the last option sets Thomil's stats to say "Gender: Not Applicable," and brings up these remarks in the narrative: "You are both genders, but you are also neither gender. You believe gender defies categorization, operating on a kind of sliding scale-- one that can change every day. You've come across [foreign planets'] texts about other cultures where such thinking is considered taboo or even sacrilegious, but in a society where everyone can quite literally share their thoughts and experiences, it's fairly impossible not to accept others once you understand who they truly are. Besides, even the most staunchly 'male' or 'female' cisgenders admit that sometimes they feel more 'masculine' or 'feminine' at different times. You just take that kind of thinking to a whole new level." The narration in ''VERSUS'' makes clear that this is not an undisclosed gender or a fantasy sex, but a nonbinary gender identity. Though Thomil comes from a sci-fi setting where where this and other transgender identities are accepted, this is a realistic depiction of a nonbinary person.
    preprocessSingleArg('titlestyle')
[[File:Fallen Hero Rebirth.png|thumb|Gender choice near the beginning of the interactive novel ''Fallen Hero: Rebirth''.]]
    preprocessSingleArg('above')
* ''Choice of the Dragon'', by Choice of Games LLC, is an interactive fiction story in which the player's character is a dragon. When creating this character, the player has more than two options for its gender/sex.
    preprocessSingleArg('aboveclass')
[[File:Choice_of_the_dragon_screenshot.png|Gender selection screen in ''Choice of the Dragon''.|thumb]]
    preprocessSingleArg('abovestyle')
*In addition to ''VERSUS: The Lost Ones'' and ''Choice of the Dragon'', many other interactive novels from Choice of Games allow the player to be be male, female, or nonbinary (as well as often choosing their own [[pronouns]] and [[orientation]]). Some of these titles include ''Tally Ho'', ''Empyrean'', ''Kidnapped! A Royal Birthday'', ''[[Drag]] Star!'', ''Choice of the Pirate'', ''The Superlatives: Aetherfall'', ''Silverworld'', ''The Hero Project: Redemption Season'', ''Fallen Hero: Rebirth'', and ''Tower Behind the Moon''.<ref>https://store.steampowered.com/app/763930/Tally_Ho/</ref><ref>https://store.steampowered.com/app/1016630/Drag_Star/</ref><ref>https://store.steampowered.com/app/557700/Empyrean/</ref><ref>https://store.steampowered.com/app/1356440/Kidnapped_A_Royal_Birthday/</ref><ref>https://store.steampowered.com/app/476490/Choice_of_the_Pirate/</ref><ref>https://store.steampowered.com/app/726230/The_Superlatives_Aetherfall/</ref><ref>https://store.steampowered.com/app/839940/Silverworld/</ref><ref>https://store.steampowered.com/app/459310/The_Hero_Project_Redemption_Season/</ref><ref>https://store.steampowered.com/app/800620/Fallen_Hero_Rebirth/</ref><ref>https://store.steampowered.com/app/1001490/Tower_Behind_the_Moon/</ref>
    preprocessArgs({
*In ''Long Story Game'' the character you play use whichever pronouns from 'she/her', 'he/him' and 'them/they', the physical depiction of the character can also be changed to suit the gender of choice.
        {prefix = 'subheader', depend = {'subheaderstyle', 'subheaderrowclass'}}
* In the dating sim ''Hustle Cat'', the protagonist can be either male, female, or nonbinary with "they" pronouns, and the characters in-game will refer to them with the chosen pronouns.
    }, 10)
*In ''Read Only Memories'' the character TOMCAT uses they/them pronouns. While it is not directly stated in-game that TOMCAT is nonbinary, artist and director John James has stated in an interview that TOMCAT "is [[gender fluid]]"<ref>{{cite web|first=Jesse|last=Tannous|title=Read Only Memories Director discusses LGBTQ themes in gaming.|date=June 20, 2015|work=The Examiner|archive-url=https://web.archive.org/web/20151023215026/http://www.examiner.com/article/read-only-memories-director-discusses-lgbtq-themes-gaming|archive-date=October 23, 2015|url=http://www.examiner.com/article/read-only-memories-director-discusses-lgbtq-themes-gaming}}</ref>.The game also includes other non-binary characters, including the robot Turing and the protagonist if the player chooses so. [[File: ROM pronouns 1.png|thumb|A screenshot of pronoun selection in ''Read Only Memories''. Selecting 'more options' allows you to choose from 'ze/zir/, 'xe/xir', or your own custom pronouns.]]
    preprocessSingleArg('subheaderstyle')
*In ''[https://en.wikipedia.org/wiki/Nights_into_Dreams... NiGHTS into Dreams]'' the character "NiGHTS is neutral, and therefore has no gender. The impressions of the character with regards to gender are totally up to the player" according to Takashi Iizuka, the lead designer of the game.<ref name="Taylor2007">{{Cite web |title=Interview: Takashi Iizuka Talks NiGHTS |last=Taylor |first=Mike |work=Nintendo Life |date=5 December 2007 |access-date=23 September 2020 |url= https://www.nintendolife.com/news/2007/12/interview_takashi_iizuka_talks_nights}}</ref>
    preprocessSingleArg('subheaderclass')
*The dating sim ''The Office Type'' (scheduled for release mid-to-late 2020) has equal numbers of male, female, and nonbinary characters for the player to romance. Every character's bio, even the cis ones, lists their pronouns. The nonbinary characters listed so far are Syl ([[demiboy]]), Benny ([[agender]]), Cal ([[demigirl]]), Toni ([[aporagender]]), Ty ([[anogender]]), Addie ([[egogender]]), Bee ([[genderfluid]]), and Mx. Hura Stapleton ([[bigender]]). There are also binary trans women and binary trans men among the cast.<ref>[https://www.heavythoughtstudios.com/projects/ Heavy Thought Studios - Projects]</ref>
    preprocessArgs({
*One of the player characters in the 2019 game ''Borderlands 3'', FL4K, is an emergent AI who uses they/them pronouns and wears a pin with the non-binary flag.
        {prefix = 'image', depend = {'caption', 'imagerowclass'}}
*In ''Tokyo Afterschool Summoners'', the player can set the protagonist's gender to male, female, or "other", regardless of which appearance they choose. The character Arc is also referred to with they/them pronouns in the official English translation.
    }, 10)
*In the MMORPG ''Runescape'', there is an NPC who can change the player character's avatar from male to female or female to male, as well as change the player's skin color. The NPC also switches their own avatar's "sex" at 10-second intervals. They are officially called "The Makeover Mage", but in a 2006 letter they wrote "My name is Pete, or Peta, depending on my mood", implying they may be [[genderfluid]], [[bigender]], or some other type of nonbinary.<ref>https://runescape.wiki/w/Makeover_Mage</ref>
    preprocessSingleArg('captionstyle')
* In the visual novel ''Astoria: Fate's Kiss'', the romanceable character Alex Cyprin is nonbinary and uses [[they/them]] pronouns.<ref>[https://lovestruckvoltage.tumblr.com/post/162091662113/pride-month-specials-weve-prepared-a-very-special Pride Month Specials], 21 June 2017</ref>
    preprocessSingleArg('imagestyle')
* In the visual novel ''//TODO: today'', the protagonist and the main characters Joyce and Phoenix can be [[male]], [[female]], or [[nonbinary]], depending on player's choices.<ref>[https://vndb.org/v21649/chars#chars VNDB {{!}} //TODO: today characters]</ref>
    preprocessSingleArg('imageclass')
* In the visual novel ''When The Night Comes'', the romanceable character August is nonbinary and uses [[they/them]] pronouns.<ref>https://lunarisgames.itch.io/wtnc</ref>
    preprocessArgs({
* In ''The Oregon Trail 4th Edition'', the character Hattie Caulfield identifies as neither a man nor a woman.{{citation needed}}
        {prefix = 'header'},
* In the furry drama video game ''Goodbye Volcano High'' (to be released 2021), the protagonist Fang uses [[they/them]] pronouns and is voiced by nonbinary actor [[Lachlan Watson]].<ref>https://store.steampowered.com/app/1310330/Goodbye_Volcano_High/</ref>
        {prefix = 'data', depend = {'label'}},
[[File:Earl Grey gender free pronouns.png|thumb|right|A screenshot of ''My Cup of Coffee: Earl Grey Forever After'' with the "gender liberated" option selected, so the game uses [[English_neutral_pronouns#Ne_.28nem.29|ne/nem/nir]] pronouns.]]
        {prefix = 'rowclass'},
*In the indie romance visual novel ''My Cup of Coffee: Earl Grey Forever After'', the protagonist can be male, female, or "[[gender free]]". Choosing gender free results in the game using [[gender neutral language]], [[English_neutral_pronouns#Ne_.28nem.29|ne/nem/nir]] pronouns, and the [[Mx]] title. The player can also choose to "make everyone else gender liberated too", resulting in the protagonist saying things like "Everybody knew about me, the eldest child of the late Gentleperson and Gentleperson Fairfax".
        {prefix = 'rowstyle'},
*In the fantasy-mystery visual novel ''Catacomb Prince'', one of the romantic options is the nonbinary person Ravi Patel.<ref>https://skeleteam.itch.io/catacombprince</ref>
        {prefix = 'rowcellstyle'},
*In the sci-fi visual novel ''Incompatible Species'', Chris is nonbinary and uses [[she/her]] pronouns, while Pi-zan uses [[they/them]] pronouns.<ref>https://www.kickstarter.com/projects/poxni/incompatible-species-a-hopeful-futuristic-visual-n</ref>
        {prefix = 'class'},
*In the visual novel ''Butterfly Soup'', Min-seo is nonbinary.<ref>https://vndb.org/c67408</ref>
        {prefix = 'dataid'},
*In the simulation game ''BitLife'', since the June 2020 Pride Update, it is possible for characters to [[come out]] to you as nonbinary<ref>https://www.instagram.com/p/CEwrBGRhFCw/</ref> and in the "Gay Dating App" portion you can select a partner preference from a dropdown list of "Male", "Female", "Genderqueer", "Non-Binary", "Transgender Female", and "Transgender Male".<ref>https://bitlife-life-simulator.fandom.com/wiki/Dating_app</ref> The player themself can also select whether their character is [[cisgender]], genderqueer, nonbinary, transgender female, and transgender male (after the character reaches age 5). Being non-cis may cause the character to experience [[gender dysphoria]] in-game, lowering their Happiness level.<ref name="leve_BitL">{{Cite web |title=BitLife Pride Update Guide: Everything You Need to Know About BitLife Version 1.38, aka the Pride Update |author=Tim |work=Level Winner |date=3 July 2020 |access-date=4 October 2020 |url= https://www.levelwinner.com/bitlife-pride-update-guide-everything-you-need-to-know-about-bitlife-version-1-38-aka-the-pride-update/}}</ref>
        {prefix = 'labelid'},
* In the dating sim ''Repurpose'' (to be released 2021<ref>{{cite tweet|user=CereusGarden|number=1305658944451477507|date=14 September 2020|title=AUDITION UPDATE: All voice actors auditioning for Repurpose MUST be 18 years or older. We apologize for not clarifying this earlier. The team is working diligently on getting the game prepped for it's 2021 release and it was a simple slip of the mind.}}</ref>), Noel Azulite is [[genderfluid]] and [[asexual]], DJ Roadkill is nonbinary and [[pansexual]], Cheri is [[bigender]] and [[omnisexual]], and Fayebael Noct is [[agender]] and "if we must assign a label, pansexual". Additionally, the player can choose their own pronouns from "he", "she", or "they".<ref name="Repurpose">{{Cite web |title=Repurpose (Demo) by Eros |author= |work=itch.io |date=11 June 2020 |access-date=28 October 2020 |url= https://residentrabbit.itch.io/repurpose-demo}}</ref><ref name="kick_Repu">{{Cite web |title=Repurpose |author=Resident Rabbit |work=Kickstarter |date= |access-date=28 October 2020 |url= https://www.kickstarter.com/projects/residentrabbit/repurpose/description}}</ref>
        {prefix = 'headerid'},
*In ''Red Embrace: Hollywood'', the player chooses their pronoun from "he", "she", or "they".<ref name="arge_Your">{{Cite web |title=Your Customized MC - Red Embrace: Hollywood |author=Argent Games |work=itch.io |date=10 September 2018 |access-date=28 October 2020 |url= https://argent-games.itch.io/red-embrace-hollywood/devlog/48055/your-customized-mc}}</ref>
        {prefix = 'rowid'}
*''Genderwrecked'' is a post-apocalyptic horror/gore visual novel about trying to find the meaning of gender. The player can select their pronouns from she/her, they/them, he/him, xe/xir, ze/zir, it/it, or custom pronouns.<ref name="genderwrecked">{{Cite web |title=GENDERWRECKED |author=ryan rose aceae |work=itch.io |date= |access-date=28 October 2020 |url= https://gendervamp.itch.io/genderwrecked}}</ref>
    }, 50)
*In ''ValiDate: Struggling Singles in your Area'', a visual novel to be released in 2021, the character Emhari Abdi is a bigender lesbian. Emhari uses both "he/him" and "she/her" pronouns.<ref>{{cite tweet|date=18 July 2020| user=ValiDateGame| number=1284540692962967553|title=Our first mini interview is with Nasr (@trashyvoid ), the artist of Emhari!}}</ref><ref>[https://validategame.com/#cast ValiDate: Meet The Cast!]</ref>
    preprocessSingleArg('headerclass')
* In the 2020 game ''Star Wars: Squadrons'', the pilot Keo Venzee is referred to with [[they/them]] pronouns.<ref>https://starwars.fandom.com/wiki/Keo_Venzee</ref>
    preprocessSingleArg('headerstyle')
* Bloodhound in ''Apex Legends'' is nonbinary and uses they/them pronouns.<ref>{{cite tweet|author=Allegra Clark|user=SimplyAllegra |number=1093207979430576128|title=*Their* voice (Bloodhound is non-binary, uses they/them pronouns), but thank you! I’m so happy that people have enjoyed the performance—Bloodhound means so much to me 😊😊😊😊|date=6 February 2019}}</ref>
    preprocessSingleArg('labelstyle')
* In the 2020 adventure game ''Bugsnax'', scientist Floofty Fizzlebean is nonbinary and uses [[singular they]] pronouns ([[Gender neutral language in Polish|onu/jenu]] in the Polish translation<ref>{{cite tweet|user=neutratywy|number=1329918251560787968|title=ekipa http://zaimki.pl miała zaszczyt i przyjemność pomóc w tłumaczeniu gry Bugsnax @YoungHorses na język polski[.] występującu tam naukowcu, Floofty, jest niebinarnu i używa dukazimów (http://zaimki.pl/onu)|date=20 November 2020}}</ref>). They are voiced by nonbinary actor [[Casey Mongillo]].<ref name="dist_Meet">{{Cite web |title=Meet the Voice Acting Cast Behind 'Bugsnax' |author=Belcher, Sara |work=Distractify |date= |access-date=9 December 2020 |url= https://www.distractify.com/p/bugsnax-cast}}</ref>
    preprocessSingleArg('datastyle')
* In the visual novel ''Werewolf: The Apocalypse - Heart of the Forest'', the character Kim is nonbinary and referred to using they/them pronouns. Their in-game character description begins by referring to them as "A nonbinary activist from Berlin."
    preprocessSingleArg('below')
* In the sci-fi indie game ''Ace In Space'', you play as Adrian Clarke, who is nonbinary and asexual.<ref>https://store.steampowered.com/app/1220710/Ace_In_Space/</ref>
    preprocessSingleArg('belowclass')
* Ash in ''Wandersong'' uses they/them pronouns and has been confirmed as nonbinary by creator Greg Lobanov.<ref name="pink_9kic">{{Cite web |title=9 kick-ass video game characters you probably never knew were non-binary |last=Johnson |first=Shakeena |work=PinkNews |date=17 February 2021 |access-date=20 February 2021 |url= https://www.pinknews.co.uk/2021/02/17/non-binary-video-game-characters-bloodhound-apex-legends-lgbt-gaming-fl4k-borderlands-3/}}</ref>
    preprocessSingleArg('belowstyle')
* In ''Hades'', the NPC Primordial Chaos is nonbinary and uses they/them pronouns.<ref name="pink_9kic" />
    preprocessSingleArg('name')
* In the browser-based RPG ''4thewords'', several NPCs are implied to be nonbinary by way of their pronouns: [[Singular they]] is used for Ordco and Yuri, and [[English_neutral_pronouns#Xe|xe]] is used for Liq of Light.
    args['italic title'] = origArgs['italic title'] -- different behaviour if blank or absent
{{Clear}}
    preprocessSingleArg('decat')
 
==Fictional sexes==
    return _infobox()
 
end
Some characters have a nonbinary gender identity only because they have a fictional kind of a physical sex. Their sex is different than female, male, or any kind of real-life intersex condition. For example, a robot that never had a physical sex, and might be correspondingly genderless. Or characters who have the fictional ability to change their sex at will, and might be said to have a  corresponding [[genderfluid]] identity. Or an alien species that reproduces by different means than humans, resulting in an alien culture with different gender roles. The fictional sexes are used as ''justification'' for these characters having nonbinary gender identities. No real nonbinary people have these sexes, and can't use that justification. As such, these kinds of characters don't really count as nonbinary representation.
 
return p
===Audio===
 
*In the ''[[Gender in Doctor Who|Doctor Who]]'' audio dramas by Big Finish, the character of Zagreus is an alien entity who inhabits various minds and bodies. Zagreus is played by one male actor and one female actress, and changes pronouns depending on each stolen body.
 
=== Board and card games ===
 
* The aetherborn race from Magic the Gathering's Kaladesh setting are sexless and typically [[agender]].<ref>James Wyatt, [https://media.wizards.com/2017/downloads/magic/Plane-Shift_Kaladesh.pdf Plane-Shift Kaladesh], pg. 16</ref> Agender aetherborn use they/them pronouns, including a secondary character for the Kaladesh arc, Yahenni.<ref>Alison Luhrs, [https://magic.wizards.com/en/articles/archive/magic-story/born-aether-2016-09-21 Born of Aether]</ref>
 
===Books and other literature===
 
*The Children of the Triad fantasy novel series by Laurie Marks includes a genderless species. The books are ''Delan the Mislaid'' (1989), ''The Moonbane Mage'' (1990), and ''Ara's Field'' (1991). The title character and protagonist of the first book is a member of that species.<ref>''All our worlds: Diverse fantastic fiction.'' http://doublediamond.net/aow</ref>
*Sayuri Ueda's science fiction novel ''The Cage of Zeus'' (2011) is about genetically engineered characters with a fictional sex and non-binary gender.<ref>Sayuri Ueda, ''The Cage of Zeus.'' 2011.</ref>
*''[http://www.goodreads.com/book/show/466375.Commitment_Hour Commitment Hour]'' by James Alan Gardner features a culture who switch between male and female sexes once a year until their 21st birthday, when they are asked to choose whether they want to stay forever as male, female, or both.
*The ''Culture'' series by Iain M. Bank is centred around a postgender civilisation.
**As described in ''Excession'', the humans are able to change sex by just thinking it, and nanomachines alter their anatomy accordingly over a period of a few days.  It is described as common for couples to take turns bearing children.
*''Bone Dance'' by Emma Bull. Character: the protagonist, Sparrow, is canonically described as "sexless" and "genderless." The exact details of their identity [http://practicalandrogyny.com/raq/bonedanc.shtml are a matter of debate (spoilers)].
*M. C. A. Hogarth's science-fiction series about the Jokka, an alien species that can randomly change sex twice at puberty, with three sexes, and three corresponding gender roles: female, male, and neuter. The neuters can't reproduce, but since they're the least vulnerable to succumbing to "mind death" (a kind of stroke that afflicts any member of their species if they exert themselves too hard), their place in society is to do work that requires a hardy body and a good memory. Several main characters don't like the sexes they ended up with, and could be seen as transgender. The main character in the short story "Freedom, Spiced and Drunk" wishes to be neuter; details aren't possible without spoiling the story.
*''[http://en.wikipedia.org/wiki/The_Left_Hand_of_Darkness The Left Hand of Darkness]'' by Ursula K. Le Guin is a classic science fiction novel published in 1976 featuring a race of people whose sexes become male or female only briefly for reproduction, and whose genders can be a variety of masculine, feminine, both or neither.
*CJ Carter's science fiction novel, ''Que Será Serees'' (2011) is about a species of people with a single gender.<ref>CJ Carter, "Genderless singular pronouns." http://tib.cjcs.com/genderless-pronouns-ey-em-and-eir-2/</ref><ref>"Que Será Serees". ''CJ's Creative Studio''. http://cjcs.com/writing/fiction/que-sera-serees/</ref>
*"In David Lindsay's ''Voyage to Arcturus'' (1920) a man from earth meets people on another planet who are neither man nor woman so he invents a new pronoun ''ae'' to refer to them."<ref>Suzanne Romaine, ''Communicating Gender.'' p. 343.</ref>
*Bard Bloom's World Tree is a setting with no human species, and many of the intelligent species in that setting have fictional sexes, such as co-lover, both-female, and so on. This includes the protagonist of a book in that setting, ''[http://www.amazon.com/Sythyrys-Journal-Chronicle-Transaffection-Adventure/dp/1451562934 Sythyry's Journal]'', which was first serialized as a blog starting in 2002. Sythyry is a member of a dragon-like species who are all "hermaphrodites" (and not analogous to real-life intersex conditions), and don't identify as female or male. In World Tree society, species is more important than gender, so same-gender relationships are seen as unremarkable, but cross-species relationships are seen as queer, which is a significant plot element in that book. The setting also has a role-playing game handbook, ''World Tree: A role playing game of species and civilization'' (2001). A romance novel in the setting, ''[http://www.amazon.com/MARRIAGE-OF-INSECTS-novel-World/dp/1890096369 A Marriage of Insects],'' deals with the relationships of a group of Herethroy, an insect-like species that has three (arguably four) sexes: male, female, co-lover (a sex necessary for males and females of that species to reproduce), and both-female (a socially unaccepted variant sex, indeterminate between female and co-lover).
*In ''Static'', a romance novel by L. A. Witt, there have always been a marginalized minority of humans capable of changing sex instantly and at will, known as "shifters." Shifters are usually, though not always, genderfluid, having different gender identities at different times, including male, female, and other genders. (Though they only have the ability to change between two sexes.) Alex, one of the protagonists and part of the lead romantic pair, is a genderfluid shifter who is the victim of medical assault to force them to remain in one form, but continues to be genderfluid and experience dysphoria.
*In the book ''Good Omens'' by Neil Gaiman and Terry Pratchett, the character Aziraphale (and A. J. Crowley by extension) are described as man-shaped, sexless beings.
*In the Faction Paradox novel ''This Town Will Never Let Us Go...'' by Philip Purser-Hallard (a [[Gender in Doctor Who|Doctor Who]] spinoff), there is a species of posthumans who are engineered to change sex from male to female as they mature. Some of these transformations are never completed. One of the main characters, Keth Marrane, is part of this species and has a body with both male and female characteristics. Marrane is fully happy with this body and is referred to as a "hermaphrodite" by other characters; a word without negative connotations in the cultures that are described. Marrane uses "one" pronouns when narrating.
*Adam Rex's sci-fi novel, ''The True Meaning of Smekday'' (2007), features the Boov, an alien people with seven genders (boy, girl, girlboy, boygirl, boyboy, boyboygirl, and boyboyboyboy) based on their fish-like role in fertilizing an egg after they lay it in a designated part of town. Because of the impersonal way they reproduce, Boov society is egalitarian and aromantic. The sequel, ''Smek for President'' (2015), has a girlboy character named Ponch Sandhandler. She-he is addressed as "ladyfellow," and by she-he pronouns. The movie loosely based on the books, ''Home'' (2015), doesn't directly mention anything about Boov gender, and only refers to any Boov by he pronouns.
*In ''[https://en.wikipedia.org/wiki/The_Left_Hand_of_Darkness The Left Hand of Darkness]'' by [https://en.wikipedia.org/wiki/Ursula_K._Le_Guin Ursula K. Le Guin], the inhabitants of the planet Gethen are referred to as ambisexual, and lack sex characteristics for the majority of the lunar cycle, which they acquire in order to reproduce.
* In Neil Gaiman and Terry Pratchett's collaborative novel ''Good Omens,''  Neil Gaiman has confirmed that both of the main characters are non-binary, and they present as different genders at times in both the book and the 2019 tv-series (Crowley presenting as female as a nanny, and Aziraphale presenting as female while possessing madame Tracy). The characters usually present as males, and don't show any inclination to correct people on using masculine pronouns, but this is presented more as them not caring, and less them defining themself as males. The book specifically says that all angels and demons in it are neither male nor female, which is the standard belief about [[Gender variance in Christianity#Angels in Christianity|angels in Christianity]].
* In ''Wyvern'', a kids book by Kyle McGiverin, there is a sentient race of beings called wyverns. The wyverns are genderless and use "wy/wym/wys" pronouns.<ref name="Helkio">{{Cite web |title=ALDIA: A World Where Gender Is Meaningless |last=Helkio |first=Raymond |work=theBUZZ |date=2017 |access-date=14 June 2020 |url= https://thebuzzmag.ca/2017/03/aldia-world-gender-meaningless/}}</ref>
* The ''Lilith's Brood'' series by Octavia Butler (three novels: ''Dawn'', ''Adulthood Rites'', and ''Imago'') features the oankali, an alien race with three genders: male, female, and ooloi.<ref name="SturgeonFW">{{Cite web |title=17 Pathbreaking Non-Binary and Gender-Fluid Novels |last=Sturgeon |first=Jonathon |work=Flavorwire |date=11 May 2015 |access-date=9 December 2020 |url= https://www.flavorwire.com/518203/17-pathbreaking-non-binary-and-gender-fluid-novels}}</ref>
* In the ''Iska Universe'' series by Geneva Vand, the Iska race of aliens uses nongendered pronouns "eet" and "ta".<ref>https://www.queeromanceink.com/book/roommates-and-space-trees/</ref>
* In Clive Barker's fantasy/sci-fi book ''Imajica'', a main character named Pie'oh'pah is a shapeshifting extraterrestrial who uses the pronoun "it".
* In Lois McMaster Bujold's ''Vorkosigan Saga'', major character Bel Thorne is one of a group of humans who were genetically engineered to have both male and female sex organs. This group is called "hermaphrodites" and use the pronoun "it". Bel Thorne is noted to usually have an "ambiguous-to-male" [[gender expression]], but sometimes presents more femininely. Additionally, there is a group of genetically-engineered beings called the "ba" who have no sex organs and are used as servants in the Cetagandan Empire.
 
===Comics and graphic novels===
 
*In ''Cardcaptor Sakura'', a manga series by CLAMP, beings who were created by magic are canonically said to be neither female nor male. They're sexless, but may prefer a gender expression that is female, male, or androgynous. This includes some main characters, but it would be spoilers to say who and how. This is also the case in the anime based on the manga, of the same name.
*''[[Wikipedia:The Sandman (Vertigo)|The Sandman]]'' by Neil Gaiman and various artists - seminal graphic novel series, as recommended in [[Nonbinary_celebrities#Kate_Bornstein|Kate Bornstein]]'s ''My New Gender Workbook'' as having "Lots of good gender play." One character, Desire, is a being who can have any sex or gender.
* In ''[http://tapastic.com/series/The-Satrians The Satrians],'' a comic by Carlisle Robinson, a satyr-like alien species called Satrians have only one sex, and [http://tapastic.com/episode/221562 no concept of gender]. They're all called by the pronoun set [[Pronouns#Xe|xe]], xyr, xem.<ref>Carlisle Robinson. "FAQ about gender." ''The Satrians''. http://tapastic.com/episode/221562</ref>
*In ''[http://spectracomic.smackjeeves.com Spectra]'', a science fiction comic by Cori Walters, the main characters are members of an alien species that has one sex, and all people voluntarily choose which of several gender roles they identify with. Outside of the story, Walters said, "They only have one physical sex but they have three socially enforced genders (or four if you count young children, who are seen as genderless until they choose their role in society.) For simplification reasons, in the comic the three main ones are referred to as he, she, and ne. The 'male' role is that of destruction, the 'female' is that of creation, and the third gender is that of preservation." The comic started in 2013 and is still in progress.<ref>''Spectra.'' [http://spectracomic.smackjeeves.com http://spectracomic.smackjeeves.com/]</ref>
* The comic series ''Crash and Burn'' involves "a genderless race of bird-like aliens" called the ornos.<ref>https://www.comixology.com/Crash-and-Burn/comics-series/78750</ref>
 
===Movies ===
 
*''E.T. The Extra-Terrestrial'' (1982), directed by Steven Spielberg. In an interview, Spielberg said that E.T. is a plant-like creature, and is neither male nor female.<ref>"E.T. the Extra-Terrestrial - Trivia." ''Internet Movie Database.'' https://m.imdb.com/title/tt0083866/trivia </ref> The finished movie itself doesn't mention this fact. The finished script refers to E.T. as "he" and "the creature." This fact about E.T. was included in the first draft of the script written by Melissa Mathison.<ref>Charlie Jane Anders, "Weird Facts That You Didn't Know About E.T.: The Extra-Terrestrial." October 10, 2012. ''Gizmodo''. https://io9.gizmodo.com/weird-facts-that-you-didnt-know-about-e-t-the-extra-t-5950664</ref>
 
===TV (live-action)===
 
*In the ''Star Trek: The Next Generation'' episode "[http://en.wikipedia.org/wiki/The_Outcast_%28Star_Trek:_The_Next_Generation%29 The Outcast]" the Enterprise encounters an alien race called the "androgynous J'naii", whose society long ago had female and male roles, but their society had become sexless and genderless, which they believe to be more advanced. They have no physical sex differences, and reproduce without copulation. They all dress alike, and ask to be called by [[Pronouns#It|it]] pronouns. The J'naii believe that it's unhealthy to be female or male, and the genderlessness of their society is enforced on all its members. In that episode, a J'naii named Soren is revealed to be secretly a [[transgender women|transgender woman]]. In a reference to real-life "[[conversion therapy]]" used coercively on transgender people to make them not be transgender, the J'naii use brainwashing to force Soren to identify as androgynous rather than female. The episode fails at exploring the possibilities of a genderless society or identity, which is depicted as bland and repressive, but is a decent critique of conversion therapy, as well as a defense of transgender rights.
*The series ''Earth: Final Conflict'' is primarily about interactions between modern-day humans and aliens called Taelons, who seem to have neither sex nor gender. The Taelons use [[Pronouns#He|he pronouns]] for human convenience, but do not identify as male.
* Time Lords in ''[[Gender in Doctor Who|Doctor Who]]'' are able to transform their bodies in order to prevent death, giving them a new personality each time they undergo this process. See [[Gender in Doctor Who]] for more information.
*In the fantasy show ''The Good Place'', Janet is a nonhuman entity who acts as something akin to a superpowered computer-like assistant. Janet uses she/her pronouns but frequently corrects people who call her a girl. Janet's actor D'Arcy Carden and the show's creator Mike Schur have "unofficially concluded that Janet is [[agender]]."<ref name="Yip" />
 
===Animation===
*''Simoun'' takes place in a world that recognizes three genders: male, female, and a feminine "maiden" gender which everyone is assigned at birth. When people in this world come of age, they're required to give up the "maiden" gender and commit to male or female--those who do not choose have it chosen for them. Several of the main characters, including the two leads, decide that they do not want to be men or women, but rather keep their "maiden" gender, which goes against the rules of society. Despite the maiden gender being feminine, the fact that choosing to keep it is regarded as significantly different from choosing to become a woman shows that it is a third gender role and not the same as womanhood.
*''Steven Universe'' is about an alien kind called Gems, who all look similar to human women, except for the half-human Gem named Steven. The show creator, [[Rebecca Sugar]], says the Gems aren't female: "Steven is the first and only male Gem, because he is half human! Technically, there are no female Gems! There are only Gems!"<ref>https://www.reddit.com/r/IAmA/comments/2e4gmx/i_am_rebecca_sugar_creator_of_steven_universe_and/cjw8e1p</ref> The Gems are called by [[Pronouns#She|she]] pronouns just because it's easy: Sugar said, "There's a 50 50 chance to use some pronoun on Earth, so why not feminine ones-- it's as convenient as it is arbitrary!"<ref>https://www.reddit.com/r/IAmA/comments/2e4gmx/i_am_rebecca_sugar_creator_of_steven_universe_and/cjw8ztw/</ref> In a later interview, Rebecca stated outright that "the Gems are all nonbinary women. [...] They wouldn't think of themselves as women, but they're fine with being interpreted that way amongst humans." (She also identified herself as a nonbinary woman in this same interview.)<ref name="TheMind">{{Cite web |title=The Mind Behind America's Most Empathetic Cartoon |work=NPR.org |date=14 July 2018 |access-date=27 October 2020 |url= https://www.npr.org/2018/07/13/628885509/the-mind-behind-americas-most-empathetic-cartoon}}</ref> Furthermore, Gems can temporarily fuse together to become a combined being. In episode "Alone Together", the aforementioned Steven manages to pull off this skill with human girl Connie, resulting in a fusion named "Stevonnie." When asked about Stevonnie's gender, Rebecca Sugar replied that "Stevonnie is an experience! The living relationship between Steven and Connie," describing them as a "metaphor that is so complex and so specific but also really, really relatable, in the form of a character."<ref>http://io9.com/steven-universe-guidebook-spills-the-secrets-of-the-cry-1704470546</ref> [http://steven-universe.wikia.com/wiki/Matt_Burnett Matt Burnett] confirmed on Twitter that Stevonnie uses they/them pronouns,<ref>{{cite web|archive-url=https://web.archive.org/web/20160413004824/https://twitter.com/mcburnett/status/620637717731217408|archive-date=13 April 2016|title=@Tumble234 Stevonnie uses them/they.|date=13 July 2015|url=https://twitter.com/mcburnett/status/620637717731217408}}</ref> which do get used for Stevonnie in later episodes. Later, in a 2019 public service announcement about self-esteem and social media, which is also part of the canon, Stevonnie is briefly seen scrolling past their Instagram profile, in which they have described themself with the words "nonbinary" and "intersex."<ref>{{cite web|url=https://www.pride.com/geek/2019/6/26/cartoon-network-confirmed-steven-universe-character-intersex|last=Ermac|first=Raffy|title=Cartoon Network Confirmed This ''Steven Universe'' Character Is Intersex|date=June 26, 2019|website=Pride.com|accessdate=September 10, 2019}}</ref> These are both real human identities and conditions, even though Stevonnie's origins are only possible in fiction.
*Izana Shinatose in ''Knights of Sidonia'' is neither female nor male, but has the ability to eventually choose a sex if they fall in love.  Izana's uniform is different from that of her classmates, reflecting their lack of gender (while females have skirts and males wear pants, Izana wears shorts). This gender is given the name of "middlesex" in the second season. Izana's body does eventually become female after falling in love with Nagate, against their conscious wishes and to their dismay.
*The Sailor Starlights in the ''Sailor Moon'' anime are male in their human form, but they can change to female when transformed into Sailor Senshi.
 
===Webseries===
 
*"[http://sulmere.tumblr.com Ask Sulmere]" by Draque Thompson is an ongoing ask blog featuring aliens of a race that never evolved sexual dimorphism or the concept of gender.
 
==Gender nonconformity in fiction==
 
This section is for characters who are [[gender nonconforming]] but have a [[binary gender]] identity. That is, they identify as female, or as male, and are therefore not nonbinary. In significant ways, the characters don't conform to the expectations and norms for their gender. Fans may describe these characters as [[genderqueer]], which may be accurate. A character who is gender nonconforming and/or genderqueer isn't necessarily nonbinary, since they may still have a strictly binary gender identity, and they may also be [[cisgender]]. For example, a character who says something like, "I'm all man, and wearing a pink dress doesn't make me any less of a man" is gender nonconforming and perhaps genderqueer, but definitely not nonbinary.
 
===Animation===
 
* In the comedy series ''SheZow'', the legacy of a super-heroine has been passed down through generations of grand-aunts to grand-nieces when they inherit a magic ring that grants feminine-themed powers. For the first time, the ring is inherited by a boy, Guy Hamdon. Whenever he's being SheZow, which entails wearing a pink costume with a skirt and long hair, he has to keep up the appearance of being a girl in order to protect his secret identity. If anyone finds out who SheZow really is, his whole family will have to be relocated to the moon. Aside from his hair, SheZow's body doesn't change, and he has to remember to speak in a higher voice. Shezow often insists that his friends who are in the know need to call him by "she" pronouns whenever he appears in public as SheZow, and grumbles whenever they mess it up. When a friend hesitates and asks in private which pronoun Guy prefers, Guy shrugs and replies, "Eh, it depends on what I'm wearing." In other words, Guy's pronoun preference while being SheZow is "she," and is "he" while in his secret identity. Guy overcomes his initial discomfort and finds empowerment and confidence in femininity, even while remaining happily masculine when presenting as a boy. While this comfortable alternation between male and female presentations could be seen as a [[genderfluid]] or [[bigender]] character, the show creator has stated in an interview that, to the best of his understanding, this isn't so: "SheZow is not transgendered. He's a boy, his gender never changes, he's just trapped in a silly costume."<ref>Reiher, Andrea (1 June 2013). "'SheZow' creator talks 'transsexual' criticism, a 'coming out' episode and more". Zap2It. Retrieved 11 February 2014.</ref> As such, Shezow/Guy is a gender nonconforming cisgender boy.
** There are other gender noncomforming characters in Shezow than the title character. Shezow's evil clone, Shezap, can look like Guy or like Shezow. When they open a portal to a gender-swapped alternative universe, Shezow discovers that the version of herself there is Dudepow, a hero with masculine-themed powers who is secretly a girl.
* On the kids' show ''Cupcake and Dino General Services'', the two titular brothers often express themselves femininely.<ref name="cupcake&dino">{{Cite web |title=On My Quest for Inclusion, Cupcake and Dino Take the Cake |last=Williams |first=Star |work=Thrive Global |date=9 March 2021 |access-date=11 March 2021 |url= https://thriveglobal.com/stories/on-my-quest-for-inclusion-cupcake-and-dino-take-the-cake/}}</ref>
 
===Books and Literature===
 
*''The Gods Themselves'' by Isaac Asimov - The 2nd part of this book features an alien species that reproduces by different means than humans, resulting in an alien culture with different gender roles. However, the 3 fictional sexes are ''not'' used as justification for these characters having nonbinary gender identities, as the protagonists are depicted as being gender non-conforming by the standards of their own society. Most notable is Dua, the "emotional"/"mid" member of a triad, who has always struggled to fit in with the others of her sex. She's explicitly non-conforming, exhibiting traits normally associated with the "rational"/"left" sex of her species. As a result, her peers use the slur "left-em" against her, which she would eventually reclaim as her own identity, along with "queer". Would she also qualify as nonbinary (technically non-trinary) transgender? This is open to interpretation by the reader.
* ''Sparkle Boy'', by Lesléa Newman with illustrations by Maria Mola, is a children's book about a "gender creative" three-year-old boy Casey and his older sister Jessie.<ref name="libr_Spar">{{Cite web |title=Sparkle Boy by Lesl&eacute;a Newman |author= |work=LibraryThing.com |date= |access-date=26 October 2020 |url= https://www.librarything.com/work/19793307}}</ref>
* In ''Pattern for an Angel'', by CJane Elliott, one of the protagonists, Gabe Martin, has a five-year-old named Ian who loves to wear dresses. The other protagonist, Loren Schuster, is a male [[drag queen]] who also wears skirts and dresses casually.<ref>{{cite book|title=Pattern for an Angel|date=2019 |last=Elliott|first=CJane|edition=Kindle}}</ref>
* In ''Seven Minutes in Vegas'', by Grace Kilian Delaney, the character Devon wears makeup and skirts while identifying himself as a guy. Content note: explicit sexual scenes, instances of physical/verbal abuse, discrimination, gun violence, use of deadly weapons, anger issues, and substance abuse.
* ''Tabitha and Magoo Dress Up Too''. A children's book in which siblings Tabitha and Magoo meet a [[drag queen]] named Morgana who helps them "learn to defy restrictive [[gender roles]]".<ref>https://www.allshewrotebooks.com/product-page/tabitha-and-magoo-dress-up-too-by-michelle-tea-ellis-van-der-does</ref>
 
===Comics and graphic novels===
*The manga ''My Androgynous Boyfriend'', by artist/writer Tamekou, is a slice-of-life romance about Wako and her boyfriend Meguru, who is often mistaken for female due to his fashion style.<ref name="Silverman">{{Cite web |title=My Androgynous Boyfriend GN 1 |last1=Silverman |first1=Rebecca |work=Anime News Network |date=6 March 2020 |access-date=15 October 2020 |url= https://www.animenewsnetwork.com/review/my-androgynous-boyfriend/gn-1/.157221}}</ref>
*The manga ''Madoka no Himitsu'' (''Madoka's Secret'') is about a boy named Madoka who likes playing with dolls and wearing dresses. His family moves to a new city where he meets classmate Itsuki who is a tomboy.
*In the manga ''Otomen'', "Asuka is a guy who has likings for girly things like shoujo manga, baking, and sewing. However, his mother forbids this and wants him to grow up manly."<ref>https://www.mangaupdates.com/series.html?id=6530</ref>
*In the manhwa ''It's Okay To Be Shy'',  Hyo Jin is a feminine man, and Dam is a masculine girl.<ref>https://www.mangaupdates.com/series.html?id=145636</ref>
*In the manga (and various adaptations of) ''Princess Jellyfish'' (海月姫, ''Kuragehime''), a main character Kuranosuke is a young man who enjoys [[cross-dressing]] and fashion.
 
===Video Games===
*In the indie game ''Repurpose'', Ramon's child Ariel is gender nonconforming (as stated by one of the creators) and is addressed with they/them pronouns.<ref>{{cite web|url=https://www.kickstarter.com/projects/residentrabbit/repurpose/posts/3114620 |title=Eros here to bring the February 2021 progress report!|date=27 February 2021|author=Eros|quote=This is Ariel! They are Ramon's child. The image says “son” but it's a sub-plot point when going on either Ramon or Ariel's paths about how they should raise and address their gender non-conforming child. For the time being Ariel's pronouns are they/them.}}</ref>
 
==See also==
 
*[[Undisclosed gender in fiction]]
*[[Gender in Doctor Who]]
*[http://tvtropes.org/pmwiki/pmwiki.php/UsefulNotes/Transgender The ''TV Tropes'' Transgender page]
*[http://tvtropes.org/pmwiki/pmwiki.php/Main/AmbiguousGender The ''TV Tropes'' Ambiguous Gender page]
 
==References==
<references />
 
[[Category:Visibility]]
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.