<?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>topic Re: How to use Unicode with the Repeat Function in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1727839#M55486</link>
    <description>&lt;P&gt;Thank you Tom!! that's so helpful!&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jul 2020 23:41:36 GMT</pubDate>
    <dc:creator>crichter14</dc:creator>
    <dc:date>2020-07-14T23:41:36Z</dc:date>
    <item>
      <title>How to use Unicode with the Repeat Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1722366#M54967</link>
      <description>&lt;P&gt;Patric Nordström presented this in his tips &amp;amp; tricks from 2019, and I was wondering&lt;/P&gt;&lt;P&gt;I can change his code from:&lt;/P&gt;&lt;P&gt;Repeat('▮',round(sum(Sales)/max(total aggr(sum(Sales), CategoryName))*10))&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;Repeat('&lt;span class="lia-unicode-emoji" title=":ring:"&gt;💍&lt;/span&gt;',round(sum(Sales)/max(total aggr(sum(Sales), CategoryName))*10)) and it works.&lt;/P&gt;&lt;P&gt;But what if I only had the unicode?&amp;nbsp; How do I put that into the original line of the expression?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;U+1F48D&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheryl&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:26:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1722366#M54967</guid>
      <dc:creator>crichter14</dc:creator>
      <dc:date>2024-11-16T18:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Unicode with the Repeat Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1722664#M54984</link>
      <description>&lt;P&gt;You can use the CHR() function in combination with the Unicode&lt;SPAN&gt;&amp;nbsp;point number.&lt;BR /&gt;&lt;BR /&gt;In this case&amp;nbsp;&lt;/SPAN&gt;&lt;span class="lia-unicode-emoji" title=":ring:"&gt;💍&lt;/span&gt; =&amp;nbsp;&lt;SPAN&gt;128141&lt;BR /&gt;&lt;BR /&gt;So in your case it would be:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;Repeat(chr(128141),round(sum(Sales)/max(total aggr(sum(Sales), CategoryName))*10))&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;On most reference sites, the unicode point number is listed under "HTML code" or "HTML entity", but all you need is the integer&amp;nbsp;number.&amp;nbsp;&lt;BR /&gt;&lt;A href="https://unicode-table.com/en/1F48D/" target="_blank" rel="noopener"&gt;https://unicode-table.com/en/1F48D/&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CHR function:&lt;BR /&gt;&lt;A href="https://help.qlik.com/en-US/sense/latest/Subsystems/Hub/Content/Sense_Hub/Scripting/StringFunctions/Chr.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/sense/latest/Subsystems/Hub/Content/Sense_Hub/Scripting/StringFunctions/Chr.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You can discover the unicode point number of a symbol by using the ORD() function:&lt;BR /&gt;&lt;A href="https://help.qlik.com/en-US/sense/latest/Subsystems/Hub/Content/Sense_Hub/Scripting/StringFunctions/Ord.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/sense/latest/Subsystems/Hub/Content/Sense_Hub/Scripting/StringFunctions/Ord.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 15:52:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1722664#M54984</guid>
      <dc:creator>QlikTom</dc:creator>
      <dc:date>2020-06-26T15:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Unicode with the Repeat Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1722711#M54991</link>
      <description>&lt;P&gt;Thanks for the information&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/87175"&gt;@QlikTom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 18:49:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1722711#M54991</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-06-26T18:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Unicode with the Repeat Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1723506#M55061</link>
      <description>&lt;P&gt;Thank you Qliktom!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 12:51:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1723506#M55061</guid>
      <dc:creator>crichter14</dc:creator>
      <dc:date>2020-06-30T12:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Unicode with the Repeat Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1723539#M55066</link>
      <description>&lt;P&gt;One more bit of relevant information. Whenever you see a unicode symbol/emoji it is typically listed in hexadecimal like so:&lt;BR /&gt;&lt;BR /&gt;U+1F48D&lt;BR /&gt;&lt;BR /&gt;If you parse out the section after "U+" you will find this is just a hexadecimal number. This can be converted to the decimal number you need on any number of websites or even with the windows calculator in "Programmer" mode.&lt;BR /&gt;&lt;BR /&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-06-30_9-43-50.png" style="width: 489px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36577i09C34AE5F6163C9A/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-06-30_9-43-50.png" alt="2020-06-30_9-43-50.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 13:44:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1723539#M55066</guid>
      <dc:creator>QlikTom</dc:creator>
      <dc:date>2020-06-30T13:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Unicode with the Repeat Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1727839#M55486</link>
      <description>&lt;P&gt;Thank you Tom!! that's so helpful!&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2020 23:41:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1727839#M55486</guid>
      <dc:creator>crichter14</dc:creator>
      <dc:date>2020-07-14T23:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use Unicode with the Repeat Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1832431#M68692</link>
      <description>&lt;PRE&gt;&lt;SPAN class="Y2IQFc"&gt;Hello all, thank you. Sorry a lot, could you explain how to be with the green triangles. &lt;/SPAN&gt;&lt;SPAN class="Y2IQFc"&gt;For red triangles i found chr (128314), chr (128315), b&lt;/SPAN&gt;&lt;SPAN class="Y2IQFc"&gt;ut there is no way with greens.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 08:52:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-Unicode-with-the-Repeat-Function/m-p/1832431#M68692</guid>
      <dc:creator>IgorManzhin</dc:creator>
      <dc:date>2021-08-31T08:52:53Z</dc:date>
    </item>
  </channel>
</rss>

