Dropdown showing characters instead of arrow icon

Hi,
I have inserted a forms snippet on a CMS platform website. I.e I do not have control of the website settings. Now there seem to be some setting that makes the arrow icon (class="k-icon k-i-arrow-60-down") look like three character instead of the down arrow. (the middle character is a euro €). Same thing goes for icons like the X close button on the form validation info field.
Not sure if this is something that can be configured in Forms or if I need to do contact the CMS.

Appreciate your input.
The form is still being developed but you can reach it here.

/Mats

Hello @Mats_Magnusson,

The issue is with the encoding used for this page.

If you don't have access to the website settings, you can try fixing it with CSS:

.k-i-arrow-60-down::before {
    content: "▾";
}

.k-i-close::before {
    content: "";
}

Thanks @Margo . I tried to include your proposed CSS. So far I do not see any difference.
Not sure I'm doing something wrong or if it means the proposed fix is not working.

Update: I managed to get it to work by using !important.

.k-i-arrow-60-down::before {
content: "▼" !important;
}