Search

Searching is implemented using a keyword searching system, so looking for keywords rather than trying to type sentences will give better results. This resource is most helpful if you already know what you are looking for and just want the characters to copy-paste. If you are having trouble finding a built-in, consider asking in Jelly Hypertraining. If something does not appear under a certain keyword and you believe it should, consider opening an issue or pull request to the GitHub repository. If you want to search by a specific character sequence in the description that isn't a keyword, consider using Ctrl-F on this page.

Note: the arity of a quick in this table is the arity of the resulting link, not the number of links it consumes. "Variadic" means the resulting link's arity is internally -1 and thus gets coerced depending on context, whereas "depends" means the resulting link has fixed arity but depends on the consumed links.



Symbol Name Type Arity Description (For monads, z is the argument; for dyads, x and y are the left and right arguments).
ؽ [1, 2] Atom niladic (0) Return [1, 2].
Ø% 4294967296 Atom niladic (0) Return 4294967296.
Ø( Parentheses Atom niladic (0) Return "()".
Ø+ Signs Atom niladic (0) Return [1, -1].
Ø- Signs (Inverted) Atom niladic (0) Return [-1, 1].
Ø. Bits Atom niladic (0) Return [0, 1].
Ø0 Zeroes Atom niladic (0) Return [0, 0].
Ø1 Ones Atom niladic (0) Return [1, 1].
Ø2 Twos Atom niladic (0) Return [2, 2].
Ø< Angle Brackets Atom niladic (0) Return "<>".
ØA Alphabet (Uppercase) Atom niladic (0) Return "ABCDEFGHIJKLMNOPQRSTUVWXYZ".
ØB Base Digits Atom niladic (0) Return "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".
ØC Consonants (All) Atom niladic (0) Return "BCDFGHJKLMNPQRSTVWXYZbcdfghjklmnpqrstvwxyz".
ØD Digits Atom niladic (0) Return "0123456789".
ØH Hexadecimal Digits (Uppercase) Atom niladic (0) Return "0123456789ABCDEF".
ØJ Jelly's Codepage Atom niladic (0) Return Jelly's codepage ("¡¢£¤¥...»‘’“”").
ØP Pi Atom niladic (0) Return 3.141592653589793.
ØQ QWERTY (Uppercase) Atom niladic (0) Return ["QWERTYUIOP", "ASDFGHJKL", "ZXCVBNM"].
ØV "ṘV" (Quine Cheat) Atom niladic (0) Return "ṘV".
ØW Word Atom niladic (0) Return "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_".
ØY Consonants (No Y, All) Atom niladic (0) Return "BCDFGHJKLMNPQRSTVWXZbcdfghjklmnpqrstvwxz".
Ø[ Square Brackets Atom niladic (0) Return "[]".
Ø^ Slashes Atom niladic (0) Return "/\".
Øa Alphabet (Lowercase) Atom niladic (0) Return "abcdefghijklmnopqrstuvwxyz".
Øb Base 64 Digits Atom niladic (0) Return "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".
Øc Vowels (All) Atom niladic (0) Return "AEIOUaeiou".
Øe Euler's Number Atom niladic (0) Return 2.718281828459045.
Øh Hexadecimal Digits (Lowercase) Atom niladic (0) Return "0123456789abcdef".
Øp Phi (Golden Ratio) Atom niladic (0) Return 1.618033988749895.
Øq QWERTY (Lowercase) Atom niladic (0) Return ["qwertyuiop", "asdfghjkl", "zxcvbnm"].
Øv "Ṙv" (Payload-capable Quine Cheat) Atom niladic (0) Return "Ṙv".
Øy Vowels (With Y, All) Atom niladic (0) Return "AEIOUYaeiouy".
Ø{ Curly Braces Atom niladic (0) Return "{}".
Ø° 360 Atom niladic (0) Return 360.
Ø⁵ 250 Atom niladic (0) Return 250 (Jelly's integer compression base).
Ø⁷ 128 Atom niladic (0) Return 128 (2⁷).
ØẠ Alphabet (All) Atom niladic (0) Return "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".
ØḄ Consonants (Lowercase) Atom niladic (0) Return "bcdfghjklmnpqrstvwxyz".
ØỴ Consonants (No Y, Lowercase) Atom niladic (0) Return "bcdfghjklmnpqrstvwxz".
ØḂ Consonants (Uppercase) Atom niladic (0) Return "BCDFGHJKLMNPQRSTVWXYZ".
ØṖ Printable ASCII Atom niladic (0) Return " !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~".
ØẎ Consonants (No Y, Uppercase) Atom niladic (0) Return "BCDFGHJKLMNPQRSTVWXZ".
Øẹ Vowels (Lowercase) Atom niladic (0) Return "aeiou".
Øỵ Vowels (With Y, Lowercase) Atom niladic (0) Return "aeiouy".
Øė Vowels (Uppercase) Atom niladic (0) Return "AEIOU".
Øẏ Vowels (With Y, Uppercase) Atom niladic (0) Return "AEIOUY".
¹ Identity Atom monadic (1) Return the argument.
Duplicate Quick same Duplicate the previous link. Does not combine them together, so F⁺€ will call F and then F on each, not FF on each.
Left Argument Atom dyadic (2) Return x.
Right Argument Atom dyadic (2) Return y.
ȧ Logical AND (Flat) Atom dyadic (2) Return y if x is truthy and x otherwise (does not vectorize).
ȯ Logical OR (Flat) Atom dyadic (2) Return x if x is truthy and y otherwise (does not vectorize).