<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Glyph Builder: uniXXXX glyph name doesn’t trigger unicode value]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">When I generate glyphs with Glyph Builder those with uniXXXX names don't trigger a unicode value. (I have ticked the <em>Auto Unicodes</em> checkbox.)</p>
<pre><code>uni1E83 = w + acute@top
</code></pre>
<p dir="auto">This happens in RF 2007102200 as well as in the 4.0b 2104222316.</p>
]]></description><link>https://forum.robofont.com/topic/940/glyph-builder-unixxxx-glyph-name-doesn-t-trigger-unicode-value</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Apr 2026 11:40:47 GMT</lastBuildDate><atom:link href="https://forum.robofont.com/topic/940.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 21 May 2021 08:40:08 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Glyph Builder: uniXXXX glyph name doesn’t trigger unicode value on Fri, 21 May 2021 08:40:08 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">When I generate glyphs with Glyph Builder those with uniXXXX names don't trigger a unicode value. (I have ticked the <em>Auto Unicodes</em> checkbox.)</p>
<pre><code>uni1E83 = w + acute@top
</code></pre>
<p dir="auto">This happens in RF 2007102200 as well as in the 4.0b 2104222316.</p>
]]></description><link>https://forum.robofont.com/post/3650</link><guid isPermaLink="true">https://forum.robofont.com/post/3650</guid><dc:creator><![CDATA[martin]]></dc:creator><pubDate>Fri, 21 May 2021 08:40:08 GMT</pubDate></item><item><title><![CDATA[Reply to Glyph Builder: uniXXXX glyph name doesn’t trigger unicode value on Fri, 21 May 2021 13:05:25 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.robofont.com/uid/27">@martin</a>,<br />
thanks for your feedback, that's probably an issue with the extension. I'll open an issue on the github tool repository and report to the main headquarter :)</p>
]]></description><link>https://forum.robofont.com/post/3652</link><guid isPermaLink="true">https://forum.robofont.com/post/3652</guid><dc:creator><![CDATA[roberto arista]]></dc:creator><pubDate>Fri, 21 May 2021 13:05:25 GMT</pubDate></item><item><title><![CDATA[Reply to Glyph Builder: uniXXXX glyph name doesn’t trigger unicode value on Fri, 21 May 2021 13:15:49 GMT]]></title><description><![CDATA[<p dir="auto">meanwhile, you could get the unicodes in the glyph objects using a script like this</p>
<pre><code>import re
pattern = re.compile('uni[0-9A-F]{4}')

for eachGlyph in CurrentFont():
    if pattern.match(eachGlyph.name) and eachGlyph.unicode is None:
        eachGlyph.unicode = int(eachGlyph.name[-4:], 16)
</code></pre>
<p dir="auto">note: it adds the unicode value only if not assigned and it assumes that the letter component of the hexadecimal number (from the glyph name) is uppercase</p>
]]></description><link>https://forum.robofont.com/post/3653</link><guid isPermaLink="true">https://forum.robofont.com/post/3653</guid><dc:creator><![CDATA[roberto arista]]></dc:creator><pubDate>Fri, 21 May 2021 13:15:49 GMT</pubDate></item><item><title><![CDATA[Reply to Glyph Builder: uniXXXX glyph name doesn’t trigger unicode value on Fri, 21 May 2021 13:23:54 GMT]]></title><description><![CDATA[<p dir="auto">or you could express explicitly the unicode value, like this</p>
<pre><code class="language-text">uni1E93 = w + acute@top | 1E93
</code></pre>
]]></description><link>https://forum.robofont.com/post/3654</link><guid isPermaLink="true">https://forum.robofont.com/post/3654</guid><dc:creator><![CDATA[roberto arista]]></dc:creator><pubDate>Fri, 21 May 2021 13:23:54 GMT</pubDate></item><item><title><![CDATA[Reply to Glyph Builder: uniXXXX glyph name doesn’t trigger unicode value on Fri, 21 May 2021 19:46:06 GMT]]></title><description><![CDATA[<p dir="auto">moved to a github issue on GlyphConstruction: <a href="https://github.com/typemytype/GlyphConstruction/issues/56" rel="nofollow">https://github.com/typemytype/GlyphConstruction/issues/56</a></p>
]]></description><link>https://forum.robofont.com/post/3655</link><guid isPermaLink="true">https://forum.robofont.com/post/3655</guid><dc:creator><![CDATA[frederik]]></dc:creator><pubDate>Fri, 21 May 2021 19:46:06 GMT</pubDate></item></channel></rss>