{"id":16788560,"url":"https://github.com/mna/runes","last_synced_at":"2025-03-17T00:40:57.711Z","repository":{"id":64303219,"uuid":"256081717","full_name":"mna/runes","owner":"mna","description":"Command to print Unicode code point information.","archived":false,"fork":false,"pushed_at":"2021-05-19T17:18:16.000Z","size":14,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-23T10:28:27.674Z","etag":null,"topics":["cli","mirror","unicode"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mna.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["mna"],"custom":["https://www.buymeacoffee.com/mna"]}},"created_at":"2020-04-16T01:48:21.000Z","updated_at":"2021-05-19T17:18:01.000Z","dependencies_parsed_at":"2023-01-15T10:01:03.212Z","dependency_job_id":null,"html_url":"https://github.com/mna/runes","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mna%2Frunes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mna%2Frunes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mna%2Frunes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mna%2Frunes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mna","download_url":"https://codeload.github.com/mna/runes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243955715,"owners_count":20374372,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cli","mirror","unicode"],"created_at":"2024-10-13T08:18:16.583Z","updated_at":"2025-03-17T00:40:57.688Z","avatar_url":"https://github.com/mna.png","language":"Go","funding_links":["https://github.com/sponsors/mna","https://www.buymeacoffee.com/mna"],"categories":[],"sub_categories":[],"readme":"# runes\n\nCommand runes prints Unicode runes to stdout along with the rune's\ncategory and sub-category, its UTF8 and UTF16 encoding information\nand its official name. Specific code points and ranges of code\npoints can be provided as arguments.\n\n* Canonical repository: https://git.sr.ht/~mna/runes\n* Issues: https://todo.sr.ht/~mna/runes\n\n## Usage\n\n```\nusage: runes [-h] [-json] [CODEPT ...] [START-END ...] [- STRING ...]\n\nThe runes command prints information about Unicode code points. Specific code\npoints can be requested as arguments, and ranges of code points are supported\n(e.g. 0x17-0x60). Code points starting with '0x' or 'u+' are considered in\nhexadecimal (the 'x' and 'u' are case insensitive), otherwise the number is\ntreated as decimal.\n\nA single dash argument '-' can be used so that subsequent arguments are treated\nas strings for which each rune will be printed.\n\nThe output follows the order of runes as specified on the command-line,\nthe same rune will be printed multiple times if it is specified or included\nin multiple arguments.\n\nFlags:\n  -h,-help           Display this message.\n  -json              Output JSON data.\n  -all               Print all Unicode code points.\n\nExamples:\n    runes -all\n    runes -json 0x2318 40-60\n    runes u+1f970 0X55-0XA0 - \"Some string\"\n```\n\n## Example output\n\n```\n$ ./runes u+1f970 0x12 u+2134-u+213a - Martin\n[S So] U+1F970 '🥰'   [F0 9F A5 B0] [D83E DD70] SMILING FACE WITH SMILING EYES AND THREE HEARTS\n[C Cc] U+0012         [12]          [12]        \u003ccontrol\u003e\n[L Ll] U+2134 'ℴ'     [E2 84 B4]    [2134]      SCRIPT SMALL O\n[L Lo] U+2135 'ℵ'     [E2 84 B5]    [2135]      ALEF SYMBOL\n[L Lo] U+2136 'ℶ'     [E2 84 B6]    [2136]      BET SYMBOL\n[L Lo] U+2137 'ℷ'     [E2 84 B7]    [2137]      GIMEL SYMBOL\n[L Lo] U+2138 'ℸ'     [E2 84 B8]    [2138]      DALET SYMBOL\n[L Ll] U+2139 'ℹ'     [E2 84 B9]    [2139]      INFORMATION SOURCE\n[S So] U+213A '℺'     [E2 84 BA]    [213A]      ROTATED CAPITAL Q\n[L Lu] U+004D 'M'     [4D]          [4D]        LATIN CAPITAL LETTER M\n[L Ll] U+0061 'a'     [61]          [61]        LATIN SMALL LETTER A\n[L Ll] U+0072 'r'     [72]          [72]        LATIN SMALL LETTER R\n[L Ll] U+0074 't'     [74]          [74]        LATIN SMALL LETTER T\n[L Ll] U+0069 'i'     [69]          [69]        LATIN SMALL LETTER I\n[L Ll] U+006E 'n'     [6E]          [6E]        LATIN SMALL LETTER N\n```\n\n## License\n\nThe [BSD 3-Clause license][bsd].\n\n[bsd]: http://opensource.org/licenses/BSD-3-Clause\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmna%2Frunes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmna%2Frunes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmna%2Frunes/lists"}