| Keyword | Short hand | Data type | Parameter | Example | 
| FULL | FU | Date format |   | Monday, June 12, 2000 3:00:30 PM EDT | 
| LONG | LO | Date format |   | June 12, 2000 3:00:30 PM EDT | 
| MEDIUM | ME | Date format |   | Jun 12, 2000 3:00:30 PM | 
| SHORT | SH | Date format |   | 6/12/00 3:00 PM | 
| DATE | DA | Date format | FULL, LONG, MEDIUM, SHORT, (Blank) | If you specify: DATE=FULL, displays as:
 Monday, June 12, 2000  | 
| TIME | TI | Date format | FULL, LONG, MEDIUM, SHORT, (Blank) | If you specify: TIME=SHORT, displays as:
 3:00 PM  | 
| CURRENCY | $ | Number format |   | 1234.56 | 
| PERCENT | % | Number format |   | 123,456% | 
| LOWER | LOW | String format |   | hello world | 
| UPPER | UP | String format |   | HELLO WORLD | 
| RAW |   | Modifier |   | Passes the resulting text through as is. 
 Hinweis  Use this keyword whenever you include HTML tags in the body of a JSP tag to prevent the HTML angle brackets from being read as less than (<) and greater than (>) symbols.  | 
| HTML |   | Modifier |   | Escapes the resulting text for a HTML page. For example, the less-than sign (<) is translated to <. (This keyword is the default if no modifier is specified.) | 
| XML |   | Modifier |   | Escapes the resulting text for a XML document. | 
| JAVASCRIPT |   | Modifier |   | Escapes the resulting text for inclusion in a JavaScript string. For example, translates a quotation mark (") to a slash followed by a quotation mark(/"), which indicates that the quotation mark should display on the page. | 
| URL |   | Modifier |   | Escapes the resulting text for inclusion in a URL. For example, a blank space (" ") is translated to a plus sign (+), removing all spaces from the query string. | 
| QUOTED |   | Modifier |   | Same as JAVASCRIPT | 
| FIRST | FI | List modifier |   | Returns only the first item in a multi-value field. | 
| LAST | LA | List modifier |   | Returns only the last item in a multi-value field. | 
| <LI> |   | List modifier |   | Places each item between opening (<LI>) and closing (</LI>) HTML list tags, which would display each item of a multi-value field on a separate line in a list. | 
| <OPTION> |   | List modifier |   | Places each item between opening (<OPTION>) and closing (</OPTION>) HTML option tags, which would display each item of a multi-value field as a an option in a selection control or menu list. | 
| SEPARATOR | SE | List modifier | String | For a multi-value field, the items are separated by the string specified in the parameter. | 
| MIN_INTEGER | MIN_INT | Number format | Number |   | 
| MAX_INTEGER | MAX_INT | Number format | Number |   | 
| MIN_FRACTION | MIN | Number format | Number |   | 
| MAX_FRACTION | MAX | Number format | Number |   |