It is possible to add non-latin characters in css "content" pseudo-element?
I have code like this:
&::after{
content:"(לחץ לחיוג)";
color: #00b1eb;
text-decoration: underline;
font-family: "Open Sans", "Narkis Block M F" !important;
font-size: 32px;
}
You can print non-latin symbols using unicode sequences like in this codepen example
e.g.
body::before {
content:"(\05DC\05D7\05E5 \05DC\05D7\05D9\05D5\05D2)";
}
(I used this tool to make the conversion of your string into UTF-8 units)