19
loading...
This website collects cookies to deliver better user experience
Level | Letter | Data recovery |
---|---|---|
Low | L | ~7% |
Medium | M | ~15% |
Quartile | Q | ~25% |
High | H | ~30% |
const LATIN1_RE = /^[\x00-\xff]*$/;
function isLatin1(string) {
return LATIN1_RE.test(string);
}