<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article How to find a number for a char: chr() and ord() functions in Member Articles</title>
    <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/ta-p/1494279</link>
    <description>&lt;P&gt;Everyone knows that sometimes we need to use &lt;STRONG&gt;chr&lt;/STRONG&gt;() function to put paragraph sign - &lt;STRONG&gt;chr(13)&lt;/STRONG&gt; – or single-quote - &lt;STRONG&gt;chr(39)&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;But sometimes you need a special symbol, but you don’t know the number. You can find it in the Internet, but I’ve found a Qlik way how to do it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Just create a straight table.&lt;/LI&gt;
&lt;LI&gt;Add Calculated Dimension =ValueLoop(1,100) or even =ValueLoop(1,10000)&lt;/LI&gt;
&lt;LI&gt;Add Expression chr(RowNo())&lt;/LI&gt;
&lt;LI&gt;And find a symbol that you need.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/84584_pastedImage_3.png" border="0" alt="" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a faster way, If you found a symbol in the Internet and would like to know what is the number for this char.&lt;/P&gt;
&lt;P&gt;For example delta sign&lt;/P&gt;
&lt;P&gt;Δ&lt;/P&gt;
&lt;P&gt;Use the &lt;STRONG&gt;ord()&lt;/STRONG&gt; function&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Ord(‘Δ’)&lt;/STRONG&gt; gives you 916. So if you need to put this symbol somewhere you can use chr(916)&lt;/P&gt;
&lt;P&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/84585_pastedImage_14.png" border="0" alt="" /&gt;&lt;/P&gt;
&lt;P&gt;Some interesting codes are&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=chr(9650) &amp;amp; chr(9651) &amp;amp; chr(9660) &amp;amp; chr(9661)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/legacyfs/online/84586_pastedImage_4.png" target="_blank"&gt;&lt;IMG class="jive-image image-15" src="https://community.qlik.com/legacyfs/online/84586_pastedImage_4.png" border="0" alt="" width="97" height="37" /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;=chr(9733) and =chr(9734)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/legacyfs/online/84587_pastedImage_5.png" target="_blank"&gt;&lt;IMG class="jive-image image-16" src="https://community.qlik.com/legacyfs/online/84587_pastedImage_5.png" border="0" alt="" width="32" height="32" /&gt;&lt;/A&gt; &lt;A href="https://community.qlik.com/legacyfs/online/84588_pastedImage_6.png" target="_blank"&gt;&lt;IMG class="image-17 jive-image" src="https://community.qlik.com/legacyfs/online/84588_pastedImage_6.png" border="0" alt="" width="30" height="31" /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Be aware!&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;in the comments in &lt;A href="https://community.qlik.com/docs/DOC-8356" target="_blank"&gt;different discussion&lt;/A&gt; &lt;A href="https://community.qlik.com/people/jaimeaguilar" target="_blank"&gt;jaimeaguilar&lt;/A&gt; mentioned that&lt;/P&gt;
&lt;P&gt;"using chr() function you can display any ASCII / ANSI character (from chr 0 to 255) or Unicode chars (from chr 256 and up). The corresponding number in chr() function for the Unicode chars is the number referred as decimal, that can be found in plenty internet sites. Almost any Unicode char will display in ajax, but in some cases the correct displaying will depend on the page encoding."&lt;/P&gt;</description>
    <pubDate>Wed, 30 Nov 2022 06:19:23 GMT</pubDate>
    <dc:creator>SergeyMak</dc:creator>
    <dc:date>2022-11-30T06:19:23Z</dc:date>
    <item>
      <title>How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/ta-p/1494279</link>
      <description>&lt;P&gt;Everyone knows that sometimes we need to use &lt;STRONG&gt;chr&lt;/STRONG&gt;() function to put paragraph sign - &lt;STRONG&gt;chr(13)&lt;/STRONG&gt; – or single-quote - &lt;STRONG&gt;chr(39)&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;But sometimes you need a special symbol, but you don’t know the number. You can find it in the Internet, but I’ve found a Qlik way how to do it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Just create a straight table.&lt;/LI&gt;
&lt;LI&gt;Add Calculated Dimension =ValueLoop(1,100) or even =ValueLoop(1,10000)&lt;/LI&gt;
&lt;LI&gt;Add Expression chr(RowNo())&lt;/LI&gt;
&lt;LI&gt;And find a symbol that you need.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/84584_pastedImage_3.png" border="0" alt="" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a faster way, If you found a symbol in the Internet and would like to know what is the number for this char.&lt;/P&gt;
&lt;P&gt;For example delta sign&lt;/P&gt;
&lt;P&gt;Δ&lt;/P&gt;
&lt;P&gt;Use the &lt;STRONG&gt;ord()&lt;/STRONG&gt; function&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Ord(‘Δ’)&lt;/STRONG&gt; gives you 916. So if you need to put this symbol somewhere you can use chr(916)&lt;/P&gt;
&lt;P&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/84585_pastedImage_14.png" border="0" alt="" /&gt;&lt;/P&gt;
&lt;P&gt;Some interesting codes are&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=chr(9650) &amp;amp; chr(9651) &amp;amp; chr(9660) &amp;amp; chr(9661)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/legacyfs/online/84586_pastedImage_4.png" target="_blank"&gt;&lt;IMG class="jive-image image-15" src="https://community.qlik.com/legacyfs/online/84586_pastedImage_4.png" border="0" alt="" width="97" height="37" /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;=chr(9733) and =chr(9734)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/legacyfs/online/84587_pastedImage_5.png" target="_blank"&gt;&lt;IMG class="jive-image image-16" src="https://community.qlik.com/legacyfs/online/84587_pastedImage_5.png" border="0" alt="" width="32" height="32" /&gt;&lt;/A&gt; &lt;A href="https://community.qlik.com/legacyfs/online/84588_pastedImage_6.png" target="_blank"&gt;&lt;IMG class="image-17 jive-image" src="https://community.qlik.com/legacyfs/online/84588_pastedImage_6.png" border="0" alt="" width="30" height="31" /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Be aware!&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;in the comments in &lt;A href="https://community.qlik.com/docs/DOC-8356" target="_blank"&gt;different discussion&lt;/A&gt; &lt;A href="https://community.qlik.com/people/jaimeaguilar" target="_blank"&gt;jaimeaguilar&lt;/A&gt; mentioned that&lt;/P&gt;
&lt;P&gt;"using chr() function you can display any ASCII / ANSI character (from chr 0 to 255) or Unicode chars (from chr 256 and up). The corresponding number in chr() function for the Unicode chars is the number referred as decimal, that can be found in plenty internet sites. Almost any Unicode char will display in ajax, but in some cases the correct displaying will depend on the page encoding."&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 06:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/ta-p/1494279</guid>
      <dc:creator>SergeyMak</dc:creator>
      <dc:date>2022-11-30T06:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494280#M828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very simple and clever solution. Appreciate!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 07:07:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494280#M828</guid>
      <dc:creator>mato32188</dc:creator>
      <dc:date>2015-04-24T07:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494281#M829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very interesting n dependable solution in tricky situations.. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 15:05:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494281#M829</guid>
      <dc:creator>mithilesh17</dc:creator>
      <dc:date>2015-04-24T15:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494282#M830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-weight: bold; color: #6a6a6a; font-family: arial, sans-serif; font-size: small;"&gt;it's fantastic&lt;/SPAN&gt;. &lt;SPAN style="color: #6a6a6a; font-family: arial, sans-serif; font-size: small; font-weight: bold;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 21:33:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494282#M830</guid>
      <dc:creator>rteco0131</dc:creator>
      <dc:date>2015-04-29T21:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494283#M831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Job !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, I want to show like &lt;STRONG&gt;a square&lt;/STRONG&gt; how to show that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 13:47:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494283#M831</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-08-03T13:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494284#M832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get to know you just need to use this solution.&lt;/P&gt;&lt;P&gt;Try to use &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;=ValueLoop(1,10000)&lt;/SPAN&gt; as a dimension and you will find the answer soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sergey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2016 10:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494284#M832</guid>
      <dc:creator>SergeyMak</dc:creator>
      <dc:date>2016-08-04T10:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494285#M833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, But bit difficult for me. I've posted on community, No one can resond that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/227723"&gt;Date (Square) Problem&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2016 10:39:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494285#M833</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-08-04T10:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494286#M834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Muchas gracias &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2017 15:06:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494286#M834</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-15T15:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494287#M835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&amp;nbsp; This is very helpful.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2017 17:17:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494287#M835</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-24T17:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494288#M836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is great - it helped me find a way to add a colored arrow to a text box based on a calculation.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2017 19:13:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494288#M836</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-24T19:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494289#M837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice and simple. Very helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jul 2017 00:12:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494289#M837</guid>
      <dc:creator />
      <dc:date>2017-07-27T00:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494290#M838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very Helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2018 06:35:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494290#M838</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2018-02-05T06:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494291#M839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-weight: bold; font-size: small; font-family: arial, sans-serif; color: #6a6a6a;"&gt;it's fantastic&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;. &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold; font-size: small; font-family: arial, sans-serif; color: #6a6a6a;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Feb 2018 06:03:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/1494291#M839</guid>
      <dc:creator>ysj</dc:creator>
      <dc:date>2018-02-12T06:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a number for a char: chr() and ord() functions</title>
      <link>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/2050752#M1115</link>
      <description>&lt;P&gt;Hi tried same logic in vizlib table it is not working.i want output like SSS&amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;JJJ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But IAM getting SSS&amp;amp;JJJ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 12:14:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Member-Articles/How-to-find-a-number-for-a-char-chr-and-ord-functions/tac-p/2050752#M1115</guid>
      <dc:creator>Lucky1</dc:creator>
      <dc:date>2023-03-19T12:14:00Z</dc:date>
    </item>
  </channel>
</rss>

