Category "unicode"

Java JDK 18 in IntelliJ prints question mark "?" when I tried to print unicode like "\u1699"

tldr: I downgraded to JDK 17 (17.0.2) and now it works... I was watching a beginners Java tutorial by Kody Simpson on YT (youtube.com/watch?v=t9LP9Nt9Nco), and

PHP how to convert UTF-8 to MUTF-8?

in PHP, how can i convert UTF-8 to MUTF-8? i am hoping i can lazily just get away with function utf8_to_mutf8(string $utf8):string{ return str_replace("\x00

PDF from HTML with only alphabetic (Latin) using itextpdf

I believe that the answer to my question is very easy for those who have had experience with this, and I thank you in advance. Namely, I managed to export a PDF

Why Unicode u+202e and u+202c cause output text to have a different result

In Java: If I print "123\u202e987\u202c456abc" then the result is 123‮987‬456abc If I print "123\u202e987\u202cxyzabc" then the result is 123‮

I'm trying to print unicode characters from QPython

Trying to print unicode characters like ┌┌┝├ from QPython 3.6 (under Android on a Chromebook with Chrome OS 100) but print(u"┌^

How can you verify a multiple code point emoji is supported?

For context, I'm trying to create a mapping from string code points to emojis and need to know if the system supports the emoji: ("1F9AE") -> "🦮" ("1

How to I set a symbol inside the record separator of awk

How do I include symbols into the record separator of awk. I know the basic syntax like this: awk 'BEGIN{RS="[:.!]"}{if (tolower($0) ~ "$" ) print $0 }' which

Unicode char has odd gap when rendered in view

I am using the following code to show a playing card. Not sure why there is a large gap at the top. This is on iOS 15.4 var body: some View { Text(String(Ch

How to decode unicode characters when using ReadAllText?

Right now I'm trying to add ASCII art to my console project using these symbols: ┌─┬┐ ╔═╦╗ ╓─╥

How to resolve this UnicodeEncodeError while installing eth-brownie on Windows10 with pipx?

I tried to install eth-brownie on a Windows 10 PC running anaconda python. Python version is 3.9x I followed the instructions here; https://eth-brownie.readthed

How can I add Unicode character in status text by using Tweepy?

I want to update status with the Chinese text 我 for which the Unicode is U+6211. I do the same thing when I add emoji in status ("\U0006211") but it didn

Saving utf-8 texts with json.dumps as UTF8, not as \u escape sequence

Sample code: >>> import json >>> json_string = json.dumps("ברי צקלה") >>> print(json_string

R import of stata file has problems with French accented characters

I have a large stata file that I think has some French accented characters that have been saved poorly. When I import the file with the encoding set to blank, i

Non-Unicode Characters Change after SSIS process

Using SSIS, I try to extract data from some source to MSSQL. Since the data is in Turkish, there are some letters that don't exist in English such as 'İ','

Jenkins P4 Plugin: p4sync failing to sync Unicode files

I'm having trouble with using p4sync in a Jenkins build system. Specifically, our P4 server is unicode-enabled. This is all fine and good, and when I call p4syn

Can Julia input Unicode characters in Vscode?

From the Julia command line, typing \pi and pressing Tab gives you $\pi$. Is this possible in vsocde or jupyter? enter image description here

How to convert unicode with hex to String in dart / flutter

%u0BB5%u0BA3%u0B95%u0BCD%u0B95%u0BAE%u0BCD Above is unicode with hex characters string Need to convert that to readable text When decoded, the above text will r

Convert regexp.FindStringIndex results to character indices

The regexp.FindStringIndex(s string, n int) []int function returns byte indices of matches. In simple scenarios, these locations correspond to the "character p

How to print unicode from a generator expression in python?

Create a list from generator expression: V = [('\\u26' + str(x)) for x in range(63,70)] First issue: if you try to use just "\u" + str(...) it gives a decoder

encrypt alphabet to unicode does not work

This is project from freecodecamp where a string is encrypt by the values of the letters are shifted by 13 places All letters will be uppercase. Do not transfor