In addition to the utilities loaded with the standard profile, there are several additional scripts of standard utilities provided with the system. These standard utilities are documented in the J Online Documentation available from the J help menu. You could run these scripts directly, but you would need to remember the path to the script, as well as which locale to run them in. The standard profile provides utilities to make this easier for you. The scripts verb lists scripts that can be loaded with the load verb.
scripts '' . . . parts plot profile scripts stdlib strings trig validate winlib winutil . . .
The scripts verb with an argument of 'v' lists the scripts with their full path and locale.
scripts 'v' . . . compare c:\j3\main\compare.ijs z convert c:\j3\main\convert.ijs z . .
The convert script contains several conversion utilities.
load 'convert' toupper 'testing 1 2 3' TESTING 1 2 3 tolower 'Sir Richard' sir richard