Skip to main content
2 votes
1 answer
92 views

I have a big file of text, lines by lines ended with a chr(13) in Windows. I want to store the text in the access mdb file memo field which has a max size limit of 64K only. The text file contain ...
DriveCarefully's user avatar
0 votes
1 answer
59 views

In file.txt I have a content with Unicode characters encoding in UTF-8. In script.ahk I FileRead it: #Requires AutoHotkey v2.0+ content := FileRead("file.txt"), "`n UTF-8" :*:a:: {...
Ooker's user avatar
  • 3,404
0 votes
1 answer
76 views

In Kotlin, how can I iterate over a string that contains Unicode characters above U+FFFF? Example code: val s = "Hëllø! € 😀" for (c in s) { println("$c ${c.code}") } Actual ...
Peter Kleiweg's user avatar
0 votes
1 answer
120 views

I'm working on an Angular 17 reactive form where I send the form data to a PHP API on the server and store it in a database. I would like the user to be able to input emojis to the form so I have set ...
Sarah's user avatar
  • 2,013
0 votes
1 answer
339 views

Any modern email service provider treats emails as case insensitive meaning that in my application I should allows users to log in both using [email protected] and [email protected]. In terms of the ...
Oscar's user avatar
  • 620
1 vote
1 answer
213 views

In Python 3, how to convert an ASCII raw-string (that includes escape characters) into a proper unicode string? As an example: a = "ä" # note the umlaut b = bytearray(...
IronPillow2's user avatar
1 vote
1 answer
505 views

I am trying to combine alphabetical characters with accents in java. For example: Combining the letter "e" (\u0065) with a combing grave accent (\u0300). I have attempted numerous ways in ...
Michael_Swartz's user avatar
0 votes
1 answer
168 views

I am sorry, if this is much of a dumb question. But I can't really figure this out, and I bet it has to be much simpler than I think. I have a byte[] array which contains several Unicode Strings, each ...
totalZero's user avatar
  • 345

15 30 50 per page
1
2 3 4 5
44