| Conversion | Beschreibung | Object null | String "TEST" | Integer 74 | Character 'A' | Float, Double 1.00 | Boolean true |
|---|---|---|---|---|---|---|---|
| %s | String | "null" | "TEST" | "74" | "A" | "1.0" | "true" |
| %d | Integer | "null" | Exception | "74" | Exception | Exception | Exception |
| %f | Floating Point | "null" | Exception | Exception | Exception | "1.000000" | Exception |
| %c | Character | "null" | Exception | "J" | "A" | Exception | Exception |
| %b | Boolean | "false" | "true" | "true" | "true" | "true" | "true" |
| %x | Hexadecimal ⇑ | "null" | Exception | "4a" | Exception | Exception | Exception |
| %X | Hexadecimal ⇓ | "NULL" | Exception | "4A" | Exception | Exception | Exception |
| %n | \n = Newline, no other arguments | ||||||