-
Notifications
You must be signed in to change notification settings - Fork 63
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
Character encoding - Accent in username and / or password #10
Comments
What if you change the encoding of the downloaded file to UTF8? What program are you opening the file with? |
Sorry I forgot to append the specs.
I don't really find any options to set the encoding to UTF-8 in the FF-PE. |
I am not sure. It sounds like an encoding problem of some sort. |
I am not an expert in JavaScript nor encoding / decoding but maybe somewhere here cause something problems. ff-password-exporter/src/renderer.js Lines 154 to 155 in 7152f17
I found this table. |
It looks like Firefox may have changed something in how the usernames and passwords are stored (encrypted?). The websites are showing fine, but the username and password fields are trash. FF Quantum 61.0.1. Any thoughts? |
@PoLaKoSz If you are viewing this in Sublime, you need to set the file encoding to UTF8. |
Thank You @E3V3A for the suggestion but it didn't work for me but You gave me a good hint. This worked for me:
Updated my question with the solutions for |
Although I am not running this app, I can only point out to have a deeper look at how your system is setup in regard to charcter coding. Including the fonts used in your Windows shells.
You can get some of these with powershell: (Get-Variable OutputEncoding).Value.EncodingName
(Get-ItemProperty -path "HKCU:\Console" -name ScreenColors).ScreenColors
(Get-ItemProperty -path "HKCU:\Console" -name VirtualTerminalLevel).VirtualTerminalLevel
[console]::OutputEncoding.CodePage
[console]::InputEncoding.CodePage
chcp.com If you have WSL, you can also check with In general, avoid using anything else than UTF-8 for your OS wide font encoding, unless you are in a font specific language like Chinese, Japanese, Korean etc. |
PS. What does this do? function toArray(str) {
const arr = new Uint8Array(str.length);
for (let i = 0; i < str.length; i++) {
arr[i] = str.charCodeAt(i);
}
return arr;
}
|
@E3V3A Converts to a UTF8 string to a byte array. |
Thank You @E3V3A for the information! I am not realy familiar with PowerShell so I just copied Your script and this is what I got back: PS C:\WINDOWS\system32> (Get-Variable OutputEncoding).Value.EncodingName
US-ASCII
PS C:\WINDOWS\system32> (Get-ItemProperty -path "HKCU:\Console" -name ScreenColors).ScreenColors
7
PS C:\WINDOWS\system32> (Get-ItemProperty -path "HKCU:\Console" -name VirtualTerminalLevel).VirtualTerminalLevel
Get-ItemProperty : Property VirtualTerminalLevel does not exist at path HKEY_CURRENT_USER\Console.
At line:1 char:2
+ (Get-ItemProperty -path "HKCU:\Console" -name VirtualTerminalLevel).V ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (VirtualTerminalLevel:String) [Get-ItemProperty], PSArgumentException
+ FullyQualifiedErrorId : System.Management.Automation.PSArgumentException,Microsoft.PowerShell.Commands.GetItemPr
opertyCommand
PS C:\WINDOWS\system32> [console]::OutputEncoding.CodePage
437
PS C:\WINDOWS\system32> [console]::InputEncoding.CodePage
437
PS C:\WINDOWS\system32> chcp.com
Active code page: 437 |
Does 149878a solve the problem? |
Yes, so i am gonna close this issue. |
Hi!
Thank You for the app!
When I have a Firefox column like this:
when I save it to
.csv
or.json
it will become to this:Solution
Fix for
.json
.json
fileFix for
.csv
.csv
fileScreenshot
The text was updated successfully, but these errors were encountered: