2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
|
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
|
+
+
+
+
+
|
%R
Display a roman number.
%s
Display a string. If the value is not a string, it will display it as
whatever type it is.
%T
Only valid if this puzzle set uses MBCS. This is like %c but uses all of
the bits to make a TRON-32 character code. If the code is less than 256
then this is the same as %c. (This is not fully implemented or tested.)
%u
Display a unsigned decimal number.
%x
Display a unsigned hexadecimal number in lowercase.
%X
|