<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta content="text/html;charset=UTF-8" http-equiv="Content-Type"></head><body ><div style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt;"><div>Hi Folks,<br></div><div><br></div><div><br></div><div>For a development tool and Unicode grok exercise, I am recreating the functionality of:  <a href="https://jrgraphix.net/r/Unicode/" target="_blank">https://jrgraphix.net/r/Unicode/</a><br></div><div><br></div><div><br></div><div>For the Latin unicode characters, I would like to create a table 10 <td> things wide in a table row.<br></div><div><br></div><div>There has got to be an elegant way rather than the kludge I am imagining...<br></div><div><br></div><div>Here is my current code that has one TD for each row.<br></div><blockquote style="border: 1px solid rgb(204, 204, 204); padding: 7px; background-color: rgb(245, 245, 245);"><div>render000020to00007F: html<br></div><div>      html table<br></div><div>            with:[<br></div><div>                  html tableHead with: [html strong: ' Basic Latin'].<br></div><div>                  html tableBody with:[<br></div><div>                  (16r000020 asCharacter to: 16r00007F asCharacter)<br></div><div>                        do:[:each|<br></div><div>                                    html tableRow with:[<br></div><div>                                          html tableHeading: (each asInteger).<br></div><div>                                          html tableData: each]]]]<br></div></blockquote><div><br></div><div>If I could "chunk" that  (16r000020 asCharacter to: 16r00007F asCharacter) or the Interval (16r000020  to: 16r00007F) into subsets of 10, it would be  easy to code this.<br></div><div><br></div><div><br></div><div><br></div><div>thanks in advance.</div></div><br></body></html>