Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
175 views

I'd like to change the size of the symbols but they cannot be wrapped in additional HTML tags. Is there a way to target a unicode range when setting font-size? Such as, span.name[...unicode range...] ...
Gary's user avatar
  • 3,354
1 vote
1 answer
101 views

I am trying to replace several Unicode characters in text strings in Microsoft Word. The issue is when I try to use these text strings in other applications, the Unicode characters convert to a ...
Jgreg7's user avatar
  • 11
Advice
0 votes
5 replies
84 views

I managed to find u_charName() for getting the name of a single character, but what about characters like flag emojis, which are made up of multiple codepoints? Do characters like that even have names?...
yabobay's user avatar
  • 40
Best practices
0 votes
3 replies
75 views

I have an on-prem OCR pipeline that returns extracted text inside a JSON blob. I parse the LLM response and call a local normalizer before returning the text to callers. Example call site: result = ...
agaonsindhe's user avatar
-4 votes
1 answer
215 views

package edu.practice.zapper; import java.io.IOException; import java.lang.ProcessBuilder.Redirect; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.Base64; import java....
PatK's user avatar
  • 13
0 votes
1 answer
71 views

Within Saxon-J, I can set the processor configuration to allow XML1.1 characters, for example by: processor.getUnderlyingConfiguration().setXMLVersion(XML11); I'm looking for the equivalent in Saxon-...
al.truisme's user avatar
0 votes
1 answer
156 views

I have a pandas DataFrame that I wish to paste into an HTML document. The DataFrame contains Dingbat characters used as symbols to highlight values as good (checkmark), nearly bad (triangle), or bad (...
Kes Perron's user avatar
0 votes
0 answers
67 views

I'm working on a Qt6/C++20 application that needs to handle localization. So far, we've gotten away with using Qt's build in localization; however, we want to add person names to our UI, with proper ...
JMY1000's user avatar
  • 159
4 votes
0 answers
218 views

This "warning sign" character, ⚠️, corresponds to the sequence of codepoints U+26A0 U+FE0F (if I understand correctly, it is ⚠ followed by a variation selector character), so I can render it ...
Enlico's user avatar
  • 30.8k
Best practices
0 votes
2 replies
39 views

I'm working on a proprietary font that uses custom glyphs for certain units of measure. For example, I want to display pH for acidity as a single glyph, or nm for nanometers, etc. This font is ...
W. Marshall's user avatar
1 vote
1 answer
127 views

The following code is refused with error BC30037: invalid character for the √ character: Public Function √(x As BigDecimal) As BigDecimal return BigDecimal.SquareRoot(x, BigDecimal.Precision) End ...
schlebe's user avatar
  • 3,949
Advice
1 vote
6 replies
104 views

How to match any amount of Unicode characters (letters, numbers, surrogate pairs) in regex: 😆 ẘ😆 😆😆 ẘaሴ abc123 I am looking for an equivalent to /^(\[a-zA-Z0-9\]+$)/i that finds ASCII.
user3443063's user avatar
  • 1,727
2 votes
2 answers
82 views

I have the following function in TypeScript which is taking in a string and converting it over to an ArrayBuffer. The returned ArrayBuffer is then being used elsewhere to create a text file for ...
UnperfectOne's user avatar
1 vote
1 answer
233 views

This is a more specific case of How to set Select-String encoding to UTF-16? Here's a source code example that demonstrates the problem. The output file is gibberish. $sourcedir = $env:PUBLIC $destdir ...
FreonPSandoz's user avatar
1 vote
3 answers
194 views

Here is the link. I'm trying to write \uxxxx, \Uxxxxxxxx inside the double quoted string: int main() { const char *a1="\u0041"; const char *a2="\U00000041"; return 0; } ...
stackbiz's user avatar
  • 2,008

15 30 50 per page
1
2 3 4 5
1684