{"id":24844639,"url":"https://github.com/ghost1face/base62","last_synced_at":"2026-06-03T02:01:06.629Z","repository":{"id":48074895,"uuid":"104964179","full_name":"ghost1face/base62","owner":"ghost1face","description":"Base62 encoder and decoder","archived":false,"fork":false,"pushed_at":"2022-11-02T00:51:12.000Z","size":42,"stargazers_count":22,"open_issues_count":0,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-16T10:20:34.152Z","etag":null,"topics":["base62","c-sharp","conversion","netcore","netstandard","url-shortener"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ghost1face.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-09-27T02:51:27.000Z","updated_at":"2025-06-11T13:01:12.000Z","dependencies_parsed_at":"2023-01-20T19:45:29.798Z","dependency_job_id":null,"html_url":"https://github.com/ghost1face/base62","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/ghost1face/base62","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghost1face%2Fbase62","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghost1face%2Fbase62/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghost1face%2Fbase62/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghost1face%2Fbase62/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ghost1face","download_url":"https://codeload.github.com/ghost1face/base62/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghost1face%2Fbase62/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33843611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-02T02:00:07.132Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["base62","c-sharp","conversion","netcore","netstandard","url-shortener"],"created_at":"2025-01-31T09:31:26.614Z","updated_at":"2026-06-03T02:01:06.604Z","avatar_url":"https://github.com/ghost1face.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Base62\n\nBase62 encoder and decoder based on [Base62 for PHP](https://github.com/tuupola/base62) for .NET.  This library is useful for converting data into shortened strings good for URL shortening and/or obfuscating auto-incrementing resource ids from being exposed through RESTful APIs.\n\n[![.NET](https://github.com/ghost1face/base62/actions/workflows/dotnet.yml/badge.svg?branch=master)](https://github.com/ghost1face/base62/actions/workflows/dotnet.yml) [![Nuget](https://img.shields.io/nuget/v/Base62.svg)](https://www.nuget.org/packages/Base62)\n\n\n## Compatibility\n\nWritten to be netstandard compliant, this library should be able to be used cross-platform.  See [netstandard](https://docs.microsoft.com/en-us/dotnet/standard/net-standard) details for more information.\n\n## Usage\n\n```\nvar base62Converter = new Base62Converter();\n\nvar encoded = base62Converter.Encode(\"120\");\n\nConsole.WriteLine(encoded);\n\nvar decoded = base62Converter.Decode(encoded);\n\nConsole.WriteLine(decoded);\n\n// output is:\n//    \"DWjo\"\n//    \"120\"\n\n```\n\n## Character sets\n\nBy default Base62 uses `[0-9A-Za-z]` character set but can be alternated to use `[0-9a-zA-Z]` through the constructor.\n\n```\nnew Base62Converter(Base62Converter.CharacterSet.INVERTED);\n\n...\n\n```\n\n## License\n\n[The MIT LIcense (MIT)](./LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fghost1face%2Fbase62","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fghost1face%2Fbase62","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fghost1face%2Fbase62/lists"}