How to use a for loop to create a table to display special characters.

Illustration
Kalpha.mc - 2024-01-31T22:25:40+00:00
Question: How to use a for loop to create a table to display special characters.

I need to get the rest of the numbers and characters in between?   for t = 1 between = (180:1:200); char = char(between); fprintf('%d %c\n',between , char); end output = 180 µ 182 · 184 ¹ 186 » 188 ½ 190 ¿ 192 Á 194 Ã 196 Å 198 Ç 200 ´ 181 ¶ 183 ¸ 185 º 187 ¼ 189 ¾ 191 À 193 Â 195 Ä 197 Æ  

Expert Answer

Profile picture of John Williams John Williams answered . 2025-11-20

Are you looking for something like this

 

between = (180:1:200);
chars = char(between);
fprintf('%d   %c\n', [between; chars]);

Result

180   ´
181   µ
182   ¶
183   ·
184   ¸
185   ¹
186   º
187   »
188   ¼
189   ½
190   ¾
191   ¿
192   À
193   Á
194   Â
195   Ã
196   Ä
197   Å
198   Æ
199   Ç
200   È

 


Not satisfied with the answer ?? ASK NOW

Get a Free Consultation or a Sample Assignment Review!