Unicode symbol issue

Hi Guys,
yesterday i started to tinker with the astro binding and used this tutorial: Astro Items+Sitemap+Map+♈ Binding Example

I came across a weird behavior.
When i launch my basicUI the moonphase looks this way:


You see there are just ??? displayed.
At the beginning this was normal for me and i thought i need to look into it later and have done some mistake with saving the file in utf8 etc.

But today i just launched the website and had it standing for 10-15 seconds and suddenly the page changed to this:

Suddenly my unicode symbols for the moonpahse are working, but my time for sunset and sunrise did also change.

This happens not only in the smarthome designer, this happens on all types of devices, brwosers or ipad/iphone.

After a refresh of the website the time of sunrise/sunset is ok again but the unicode symbols turned into ??? again.

Do you have any idea why this is the case?

Thanks Andreas

Hi,

I use in the map file the unicode values - & do not copy paste the characters - here an example:

ARIES=\u2648 Widder
TAURUS=\u2649 Stier
GEMINI=\u264A Zwilling
CANCER=\u264B Krebs
LEO=\u264C Löwe
VIRGO=\u264D Jungfrau
LIBRA=\u264E Waage
SCORPIO=\u2649F Skorpion
SAGITTARIUS=\u2650 Schütze
CAPRICORN=\u2651 Steinbock
AQUARIUS=\u2642 Wassermann
PISCES=\u2643 Fisch

Maybe using this format will help – btw. I do not think that I save the files as UTF, but plain ASCII.

with kind regards,
Patrik

Hello @aksnet,
all is fine… kind of.

Pay attention to this line in the tutorial:

You’ll also notice, that some moon unicode characters are not supported by the Basic UI font (Helvetica) but by other UIs e.g. the Android App.

It’s pretty simple: Unicode defines a sheer set of characters and symbols but a font needs to provide the visual presentation. Different fonts have varying coverage.

Regarding your second screenshot: no idea what happened there but that could be an actual bug rather than a feature :slight_smile: I’ll try to investigate

Hi @ThomDietrich,

i have seen this line later then so i thought ok i have to live with it. But this flickering effect to a working display of the moon characters was made me wonder :slight_smile:
Let me know if i can help with any debugging.
Btw. i am on the GA version of OH2, no snapshots :slight_smile:

Hi,
i have played with the moon icons today a bit and may have found the reason or a part of it why i only see ? ?.
In one of the threads i have found a user using directly unicode codes to display the zodiac icons, like for cancer it’s \u264B.
Then i was looking for some moon icons and found on this website:


and http://www.unicode.org/charts/beta/nameslist/n_1F300.html
That a beatiful moon unicode icon has the code 1F311, so i tried to use \u1F311 but this was not giving the moon icon in the basicui, it displayed something else.
So i searched a bit and was looking around how java handles usually unicode chars.
I found that JAVA has no issues with every code below FFFE which is unicode 1.1 up to 3.0.
So all items in unicode 4.0 and upwards causing issues.
Source (unfortunately in german: http://openbook.rheinwerk-verlag.de/javainsel/javainsel_04_001.html#dodtpb52c4df2-888c-4da6-ad78-58aeea44752e)

I then found a page with some other suggestions how to write the unicode in the text, sample:
For the fullmoon \u1F311 this should be used: \uD83C\uDF11
see http://www.fileformat.info/info/unicode/char/1f311/index.htm

This is then giving me the 2 Questionmarks.
So my feeling is OH may have some trouble with unicode 4.0 - 6.0. Or is it the used zulu java engine in openhabian 1.2? I have no chance currently to test if it works better with the oracle engine, but maybe one of you have an idea.

Thanks
Andreas