Unofficial Uiuisms
| Reverse each row of an array | ≡⇌ [1_2_3 4_5_6] | Pad |
| Get the sum of an array | /+ [1 2 3 4 5] | Pad |
| Get the product of an array | /× [1 2 3 4 5] | Pad |
| Get the maximum value in an array | /↥ [1 4 5 3 2] | Pad |
| Get the minimum value in an array | /↧ [1 4 5 3 2] | Pad |
| Sort an array | ⊏⍏. [1 4 5 3 2] | Pad |
| Get n numbers between 0 and 1 exclusive | ÷⟜⇡ 10 | Pad |
| Get n numbers between 0 and 1 inclusive | ÷-1⟜⇡ 11 | Pad |
| Create a zero matrix | ↯⟜⊚ 5 | Pad |
| Create an identity matrix | ⊞=.⇡ 5 | Pad |
| Create an X matrix | ↥⇌.⊞=.⇡ 5 | Pad |
| Create a zero matrix of the same shape as another | ≠. [1_1 2_2] | Pad |
| Create a 0xN matrix | ↯0⊚ 2 | Pad |
| Replace all NaNs in an array with a value | ↧⊸↥ 0 [1 2 NaN 4 NaN] | Pad |
| Check if character is numeric [0-9] | ×⊓≥≤@0,@9 "hi-5!" | Pad |
| Check if character is letter [a-zA-Z] | ↥∩×∩⊓≥≤@a,@z,@A,@Z "oiCu812α" | Pad |
| Check if character is alphabetic | ⌵± "oiCu812α" | Pad |
| Check if an array is a palindrome | ≍⇌. "racecar" | Pad |
| Convert a number to a string | °⋕ 17 | Pad |
| Convert a string to a number | ⋕ "42" | Pad |
| Convert a string to a list of code points | -@ "Uiua" |