• What is Sqids?

    Sqids is a small open-source library that can produce short, unique, random-looking IDs from numbers.

    The best way to think about it is like a decimal-to-hexadecimal converter, but with a few extra features.

  • Link shortening, generating unique event IDs for logging, generating IDs for products/objects on a website (like YouTube does for videos), generating short IDs for text messages, confirmation codes in emails, etc.

  • Any data that's sensitive. Generated IDs are not hashes and could be decoded back into numbers. For example, they might not be a good choice for user IDs, because once decoded, they could reveal your app's user count.

  • Can I encode several numbers at once?

    Yes. Sqids can encode one or many non-negative numbers into a single ID. There is no limit to how many numbers you can encode, but there is a limit to how big of a number you can encode (depending on the implementation language).

    This is useful for several reasons: you could encode a UNIX timestamp and create expiring IDs, or you could encode a database shard number along with a primary key and save up on extra database queries.

  • Are generated IDs unique?

    Yes, generated IDs are unique to the input and the alphabet.

    Keep in mind though that the default alphabet contains both uppercase and lowercase letters, so default IDs are case-sensitive.

  • What limitations does Sqids have?

    Sqids cannot encode negative numbers.

    The minimum alphabet length is 3 characters.

    The alphabet cannot contain any multibyte characters.

    Sqids cannot generate IDs up to a certain length, only at least a certain length. The minimum length parameter range is between 0 and 255.

    Sqids can attempt to regenerate IDs up to alphabet length, minus one.

  • How can I make my IDs unique?

    The library accepts a custom alphabet from which it can generate IDs. Simply pre-shuffle the default alphabet that's provided.

    Please keep in mind that given enough effort, somebody could reverse-engineer your shuffled alphabet, so this is by no means a technique to hide sensitive data.

  • How can I shuffle the default alphabet?

    The default alphabet can be found here .

    You can use any of the online string shuffling tools or our playground .

  • Is it better to use a shorter or longer alphabet?

    Depends on your use case. A shorter alphabet will produce longer IDs, and a longer alphabet will produce shorter IDs. You can use the playground to test how your IDs might look.

  • Can my alphabet consist of only numbers?

    Yes. Keep in mind that generated IDs are still strings and they might start with a zero.

  • Can I use emojis as the alphabet?

    No. Sqids does not support multibyte characters for the alphabet. That includes emojis as well as many other characters.

  • Why pad IDs?

    The library can extend IDs with junk characters to make them appear longer. This is useful so that it's not as obvious whether you're encoding a small number like 1 or a large number like 1000000.

    Decoding is not affected.

  • Can I make generated IDs longer?

    Yes, the library accepts a minimum length parameter which guarantees that IDs will be at least that length.

    Please note that there's no guarantee on how long your IDs will be — only that they will not be shorter than the length you specify.

  • Can I make generated IDs a specific length?

    Up to a point.

    Setting max length is impossible because sooner or later your IDs will overflow given a big enough input. That's why only the minimum length parameter is supported, and the exact length or maximum length is not.

  • Why use a blocklist?

    A blocklist can prevent certain words from appearing in your IDs. This is beneficial because generated IDs are meant to appear in public places, like the URL.

    Sqids comes with the default blocklist that contains the most basic profanity and inappropriate words from several languages. You can of course extend that blocklist with your own words.

  • How does the blocklist work?

    Blocklist word matching is case-insensitive.

    Short words less than 3 characters long will not be blocked. Words 3 characters long have to match IDs exactly. Words 4 characters or longer will trigger a match if they're a substring of the ID.

    If blocklist words contain numbers (leetspeak), they will only trigger a match if they're at the beginning or the end of the ID.

  • What words are in the default blocklist?

    The default blocklist contains the most common profanity and inappropriate words from several languages. You can find the complete list here .

  • What happens when all IDs are blocked?

    When the generated ID matches a word in the blocklist, the library attempts to regenerate it.

    If every single attempt fails to regenerate the ID, the encode function will fail and return an error. Handling that error is up to the user.

    The best way to decrease the number of regeneration attempts is to have a longer alphabet, not set a minimum length, and provide a smaller blocklist. Providing an empty blocklist will disable the feature completely.

  • How to check if IDs are valid?

    Decoding IDs will usually produce some kind of numeric output, but that doesn't necessarily mean that the ID is canonical. To check that the ID is valid, you can re-encode decoded numbers and check that the ID matches.

    The reason this is not done automatically is that if the default blocklist changes in the future, we don't want to automatically invalidate the ID that has been generated in the past and might now be matching a new blocklist word.

  • What happens when the default blocklist gets updated?

    We will be sure to update the CHANGELOG when and if the default blocklist changes.

    You have to account for scenarios where a new word might be introduced to the default blocklist. In this case, re-encoding numbers might produce a different ID.

    The best way to ensure your IDs stay consistent throughout future updates is to provide a custom blocklist, even if it is identical to the current default blocklist.

  • Can encoding different numbers produce identical IDs?

    No, encoding different numbers will produce unique IDs.

    However, because of the algorithm's design, decoding random IDs can sometimes produce the same numbers. The best way to check if the ID is canonical is to simply re-encode decoded numbers and check that the ID matches.

  • What is Hashids?

    Hashids was the first version of this library that came out around 2013. It also produced short IDs but used a slightly different method.

  • Why was Hashids upgraded to Sqids?

    Hashids handled a few things differently.

    It did not support a custom blocklist, but instead relied on the most common English profanity words. It also used the salt parameter to shuffle the alphabet which made it a little confusing because the library has nothing to do with encryption. Additionally, it used too many reserved characters which resulted in producing longer IDs.

    Therefore, we've decided to upgrade and rebrand. The algorithm has been simplified, a few features were added and the code repositories are all under one roof now .

  • Why was the salt parameter removed?

    The salt parameter was used to shuffle the alphabet, and it was never meant to be associated with security or safety. Both Hashids and Sqids work similarly to the way decimal to hexadecimal conversion works but with a few adjustments. There is no encryption of any kind, so to avoid confusion, that parameter has been removed completely.

  • Is Hashids compatible with Sqids?

    No, Sqids expands on the functionality of Hashids and has different design goals & requirements; therefore, generated IDs are not compatible with Hashids.

  • How can I safely upgrade from Hashids to Sqids?

    Since there's no compatibility between Hashids and Sqids, it's impossible to simply replace Hashids with Sqids.

    However, you can merge the two by differentiating which ID belongs to which library.

    One of the ways to do that is by ID length - if you're switching to Sqids, you can provide a higher minimum length. Another way is to manually append/prepend a custom character to the newly generated IDs.

    Finally, you could also attempt to decode an ID with Hashids to see if it's valid. If not - decode and re-encode with Sqids to see if that works.

  • Where can I find the original Hashids libraries?

    Each language implementation on this website links to the original Hashids repository if it exists.

  • How can I contribute?

    If you'd like to support the project, we'd appreciate starring our repos on Github for more visibility.

    If you're a developer and see no implementation of Sqids for a particular language, please help us convert the library. The same goes for a programming language that is not listed.

    If you see a bug in the spec or any of the implementations, please create an issue or a pull request with a suggested fix in the appropriate repository.

    If you speak multiple languages, we could use your help with fine-tuning the blocklist and adjusting website translations if you see any issues.

    Finally, if you have some experience with Hashids/Sqids, please help guide our community by answering any questions anyone might have.

  • How to port Sqids to another language?

    If you would like to port Sqids to one of the following languages (or a new one not listed here):

    ActionScript , D , Elm , Haxe , Io , PostgreSQL , Raku , Smalltalk , T-SQL , Tcl , VBA

    Fork the official repo to your own Github account & implement the spec along with all the tests. You can re-use any of the existing READMEs (example ).

    Once the library is ready, create a pull request. Once merged, we'll update the website.

    If the repo has no active maintainers, we'd be happy to invite you to manage the repo and become an official maintainer.