Popularity
3.5
Declining
Activity
7.2
-
20
3
6
Monthly Downloads: 14,486
Programming language: Elixir
License: MIT License
Tags:
Text And Numbers
Latest version: v1.2.1
base62 alternatives and similar packages
Based on the "Text and Numbers" category.
Alternatively, view base62 alternatives based on common mentions on social networks and blogs.
-
money
Elixir library for working with Money safer, easier, and fun... Is an interpretation of the Fowler's Money pattern in fun.prog. -
nanoid
Elixir port of NanoID, a secure and URL-friendly unique ID generator. https://hex.pm/packages/nanoid -
secure_random
Convenience library for random base64 strings modeled after my love for Ruby's SecureRandom -
chinese_translation
An elixir module to translate simplified Chinese to traditional Chinese, and vice versa, based on wikipedia data -
inet_cidr
CIDR library for Elixir that is compatible with Erlang's :inet and supports both IPv4 and IPv6 -
Ex_Cldr_Units
Unit formatting (volume, area, length, ...) functions for the Common Locale Data Repository (CLDR) -
minigen
Pure random data generation library, appropriate for realistic simulations in the Erlang ecosystem
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of base62 or a related project?
Popular Comparisons
README
Base62
Base62 encoder/decoder in pure Elixir.
Usage
Encode
iex> Base62.encode(28)
"S"
iex> Base62.encode(44)
"i"
iex> Base62.encode(280)
"4W"
Decode!
iex> Base62.decode!("100")
3844
iex> Base62.decode!("igas")
10650166
iex> Base62.decode!("EvilMartians")
776957886790921093120
Decode
iex> Base62.decode("42")
{:ok, 250}
iex> Base62.decode("Игас")
:error
iex> Base62.decode("Elixir")
{:ok, 13531063449}
License
Released under the MIT License.
*Note that all licence references and agreements mentioned in the base62 README section above
are relevant to that project's source code only.