Index: tests/io/.expect/manipulatorsOutput1.arm64.txt
===================================================================
--- tests/io/.expect/manipulatorsOutput1.arm64.txt	(revision b19b3623da9e91bd1dc2397cc1211cf5def36992)
+++ tests/io/.expect/manipulatorsOutput1.arm64.txt	(revision bb1eabcd6f64b0ee41ffacd7dd40e7329004f68e)
@@ -38,12 +38,12 @@
 
 char
-a'a' ' '       a     'a'    aa    
-a'a' ' '       a     'a'    aa    
+a'a' ' '"a"<a>       a     'a'     "a"     {a}    aa    
+a'a' ' '"a"<a>       a     'a'     "a"     {a}    aa    
 141 0141      141 0141     61 0x61       61 0x61    
 141 0141      141 0141     61 0X61       61 0x61     1100001 0B1100001      1100001 0b1100001
 
 char *
-abcd "abcd"     abcd   "abcd"   abcd abcd     "abcd"  
-abcd "abcd"     abcd   "abcd"   abcd abcd     "abcd"  
+abcd "abcd"     abcd   "abcd"   'abcd'   <abcd>   abcd abcd     "abcd"  
+abcd "abcd"     abcd   "abcd"   'abcd'   <abcd>   abcd abcd     "abcd"  
 141 142 143 144 0141 0142 0143 0144      141      142      143      144 0141     0142     0143     0144    
 61 62 63 64 0X61 0X62 0X63 0X64       61       62       63       64 0x61     0x62     0x63     0x64    
Index: tests/io/.expect/manipulatorsOutput1.x64.txt
===================================================================
--- tests/io/.expect/manipulatorsOutput1.x64.txt	(revision b19b3623da9e91bd1dc2397cc1211cf5def36992)
+++ tests/io/.expect/manipulatorsOutput1.x64.txt	(revision bb1eabcd6f64b0ee41ffacd7dd40e7329004f68e)
@@ -38,12 +38,12 @@
 
 char
-a'a' ' '       a     'a'    aa    
-a'a' ' '       a     'a'    aa    
+a'a' ' '"a"<a>       a     'a'     "a"     {a}    aa    
+a'a' ' '"a"<a>       a     'a'     "a"     {a}    aa    
 141 0141      141 0141     61 0x61       61 0x61    
 141 0141      141 0141     61 0X61       61 0x61     1100001 0B1100001      1100001 0b1100001
 
 char *
-abcd "abcd"     abcd   "abcd"   abcd abcd     "abcd"  
-abcd "abcd"     abcd   "abcd"   abcd abcd     "abcd"  
+abcd "abcd"     abcd   "abcd"   'abcd'   <abcd>   abcd abcd     "abcd"  
+abcd "abcd"     abcd   "abcd"   'abcd'   <abcd>   abcd abcd     "abcd"  
 141 142 143 144 0141 0142 0143 0144      141      142      143      144 0141     0142     0143     0144    
 61 62 63 64 0X61 0X62 0X63 0X64       61       62       63       64 0x61     0x62     0x63     0x64    
Index: tests/io/.expect/manipulatorsOutput1.x86.txt
===================================================================
--- tests/io/.expect/manipulatorsOutput1.x86.txt	(revision b19b3623da9e91bd1dc2397cc1211cf5def36992)
+++ tests/io/.expect/manipulatorsOutput1.x86.txt	(revision bb1eabcd6f64b0ee41ffacd7dd40e7329004f68e)
@@ -38,12 +38,12 @@
 
 char
-a'a' ' '       a     'a'    aa    
-a'a' ' '       a     'a'    aa    
+a'a' ' '"a"<a>       a     'a'     "a"     {a}    aa    
+a'a' ' '"a"<a>       a     'a'     "a"     {a}    aa    
 141 0141      141 0141     61 0x61       61 0x61    
 141 0141      141 0141     61 0X61       61 0x61     1100001 0B1100001      1100001 0b1100001
 
 char *
-abcd "abcd"     abcd   "abcd"   abcd abcd     "abcd"  
-abcd "abcd"     abcd   "abcd"   abcd abcd     "abcd"  
+abcd "abcd"     abcd   "abcd"   'abcd'   <abcd>   abcd abcd     "abcd"  
+abcd "abcd"     abcd   "abcd"   'abcd'   <abcd>   abcd abcd     "abcd"  
 141 142 143 144 0141 0142 0143 0144      141      142      143      144 0141     0142     0143     0144    
 61 62 63 64 0X61 0X62 0X63 0X64       61       62       63       64 0x61     0x62     0x63     0x64    
Index: tests/io/manipulatorsOutput1.cfa
===================================================================
--- tests/io/manipulatorsOutput1.cfa	(revision b19b3623da9e91bd1dc2397cc1211cf5def36992)
+++ tests/io/manipulatorsOutput1.cfa	(revision bb1eabcd6f64b0ee41ffacd7dd40e7329004f68e)
@@ -7,6 +7,6 @@
 // Created On       : Sat Jun  8 18:04:11 2019
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat May  2 18:50:48 2026
-// Update Count     : 65
+// Last Modified On : Sun May  3 23:31:09 2026
+// Update Count     : 76
 // 
 
@@ -100,7 +100,8 @@
 
 	sout | nl | "char";
-	char c = 'a', * qc = "'a'";
-	printf( "%c%s%c'%c'%8c%8s%5c%-5c\n", c, qc, ' ', ' ', c, qc, c, c );
-	sout | c | quote(c) | ' ' | quote(' ') | wd(8,c) | quote( wd(8,c) ) | wd(5,c) | left(wd(5,c));
+	char c = 'a';
+	printf( "%c'%c'%c'%c'\"%c\"<%c>%8c%8s%8s%8s%5c%-5c\n", c, c, ' ', ' ', c, c, c, "'a'", "\"a\"", "{a}", c, c );
+	sout | c | quote(c) | ' ' | quote(' ') | quote( c, '"' ) | quote( c, '<', '>' )
+		 | wd(8,c) | quote( wd(8,c) ) | quote( wd(8,c), '"' ) | quote( wd(8,c), '{', '}' ) | wd(5,c) | left(wd(5,c));
 	printf( "%hho %#hho %8hho %#-8hho %hhx %#hhx %8hhx %#-8hhx\n", c, c, c, c, c, c, c, c );
 	sout | nobase(oct(c)) | upcase(oct(c)) | nobase(wd(8,oct(c))) | left(wd(-8,oct(c))) | nonl;
@@ -109,10 +110,11 @@
 
 	sout | nl | "char *";
-	const char * s = "abcd", * qs = "\"abcd\"";
-	printf( "%s %s %8s %8s %6.8s %-8s %-8s\n", s, qs, s, qs, s, s, qs );
-	sout | s | quote( s ) | wd(8,s) | quote(wd(8,s)) | wd(6,8,s) | left(wd(8,s)) | quote(left(wd(8,s)));
-	sout | nobase(oct(s)) | upcase(oct(s)) | nobase(wd(8,oct(s))) | left(wd(-8,oct(s)));
-	sout | nobase(hex(s)) | upcase(hex(s)) | nobase(wd(8,hex(s))) | left(wd(-8,hex(s)));
-	sout | nobase(bin(s)) | upcase(bin(s)) | nobase(wd(12,bin(s))) | left(wd(-12,bin(s)));
+	const char * cs = "abcd";
+	printf( "%s %s %8s %8s %8s %8s %6.8s %-8s %-8s\n", cs, "\"abcd\"", cs, "\"abcd\"", "'abcd'", "<abcd>", cs, cs, "\"abcd\"" );
+	sout | cs | quote(cs) | wd(8,cs) | quote(wd(8,cs)) | quote(wd(8,cs), '\'')| quote(wd(8,cs), '<', '>')
+		 | wd(6,8,cs) | left(wd(8,cs)) | quote(left(wd(8,cs)));
+	sout | nobase(oct(cs)) | upcase(oct(cs)) | nobase(wd(8,oct(cs))) | left(wd(-8,oct(cs)));
+	sout | nobase(hex(cs)) | upcase(hex(cs)) | nobase(wd(8,hex(cs))) | left(wd(-8,hex(cs)));
+	sout | nobase(bin(cs)) | upcase(bin(cs)) | nobase(wd(12,bin(cs))) | left(wd(-12,bin(cs)));
 }
 
