Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/blueset/alfred-search-unicode

Search Unicode is an Alfred 4 Workflow to lookup and reverse lookup Unicode characters and emoji with their names.
https://github.com/blueset/alfred-search-unicode

alfred alfred-workflow alfred4-workflow unicode

Last synced: about 2 months ago
JSON representation

Search Unicode is an Alfred 4 Workflow to lookup and reverse lookup Unicode characters and emoji with their names.

Lists

README

        

# Search Unicode

Search Unicode is an Alfred 5 Workflow to lookup and reverse lookup Unicode characters and emoji with their names.

## Download

Download it at the [release page](https://github.com/blueset/alfred-search-unicode/releases).

You need to install Python 3 on your macOS in order for this to work.
You can install that with [Homebrew] using the command below:

```sh
brew install python
```

[Homebrew]: https://brew.sh/

Seeing “‘uni’ cannot be opened because the developer cannot be verified”?

It can be resolved by:


  1. Open Alfred Preferences > Workflows section

  2. Right-click “Search Unicode” > “Open in Finder”

  3. Right-click the uni executable and choose “Open” and allow it to run, then quit Terminal or close the window



Thanks valrus (Ian McCowan) for the instructions.

## Usage

### Search character by description

![Screenshot for command u superscript](images/u_superscript.png)

Type `u keyword` (ex. `u superscript`) to get a list of characters
matching the keyword.

- Press Return to copy the character to clipboard (ex. `⁰`)
- Press Cmd + Return to copy its Hex code to clipboard (ex. `U+2070`)
- Press Option + Return to copy its name to clipboard (ex. `Superscript Zero`)

### Search character by code point

![Screenshot for command u fffd ff10](images/u_fffd_ff10.png)

Type `u codepoint [[codepoint] ...]` (ex. `u fffd ff10`) to look up characters by its codepoint.

The same 3 options apply here too.

### Search emoji by name

![Screenshot for command e face](images/e_face.png)

Type `e keywords` (ex. `e face`) to look up characters by its codepoint. Press Return to copy the character to clipboard (ex. `😀`)

Additionally, you can choose your preferred emoji gender and skin tone in the workflow config. These settings are provided by `uni`.

![Screenshot of workflow config for gender and skintones](images/e_config.png)

### Identify characters in a string

![Screenshot for command uid lenny face](images/uid_lenny.png)

Type `uid string` (ex. `uid ( ͡° ͜ʖ ͡°)`) to identify characters in a string.

For the first 4 rows (hex sequence, integer sequence, UTF-8 sequence and XML escape sequence):

- Press Return to copy the sequence to clipboard (ex. `28 20 0361 B0 20 035C 0296 20 0361 B0 29`)

For the following rows that identifies each individual characters:

- Press Cmd + Return to copy its Hex code to clipboard (ex. `U+2070`)
- Press Option + Return to copy its name to clipboard (ex. `Superscript Zero`)

## Credit

This workflow depends on resources from:

- [arp242/uni] git+0786da3 with Unicode 15.0
- [Twemoji] 14.0.2 for emoji preview

[arp242/uni]: https://github.com/arp242/uni
[Twemoji]: https://twemoji.twitter.com/

## License

```plain
Copyright 2023 Eana Hufwe

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the “Software”), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
```