-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parse percent encoded query parameter using a different charset than UTF-8 #468
Comments
What I'm saying is that it works properly this way:
But not the other way around:
|
OK, I think I found a workaround based on
I can use this as an input to |
Thanks for raising and figuring out where the shortcoming is 🙇♂️ I'm thinking we should make the |
fedorovar
added a commit
to ActianCorp/scala-uri
that referenced
this issue
Apr 23, 2024
FLimburg
pushed a commit
to ActianCorp/scala-uri
that referenced
this issue
Apr 23, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to parse an "ISO-8859-1" encoded relative URL, I can't seem to get the proper UTF-8 string out of this value:
The param value should be
rón
. So I tried this example but I can seem to get bidirectionally work properly for a custom charset, forUTF-8
it works:I'm trying bidirectionally because it's related to what I need.
v2
andv3
are the same which makes sense butv1
andv2
are not, am I missing something? What is the proper way to parse an encoded representation that was encoded using a custom character set?The text was updated successfully, but these errors were encountered: