---
title: "Unicode Inspector action for ActionClip"
canonical_url: "https://actionclip.app/actions/unicode-inspector"
document_type: "standalone_action"
official: true
action_count: 1
catalog_schema_version: 1
catalog_revision: "2026-08-21.1"
catalog_published_at: "2026-08-20T18:50:00Z"
---

# Unicode Inspector action for ActionClip

Show every selected Unicode code point.

## What it does

Iterates by Unicode scalar rather than UTF-16 code unit and labels spaces, tabs, and line breaks so invisible characters remain understandable.

## Action details

| Field | Value |
| --- | --- |
| Category | Developer Tools |
| Action type | JavaScript |
| Result | Copy the result |
| Internet | Not required |

## Action and outcome

| Action | Outcome |
| --- | --- |
| **Unicode Inspector** — Selected text: A 👋 | U+0041 A U+0020 SPACE U+1F44B 👋 |

## How to show every selected Unicode code point with ActionClip

1. Select the text you want to use.
2. Choose **Unicode Inspector** from ActionClip.
3. Review the result, then copy it where you need it.

## Requirements

No setup required.

## Privacy

Runs locally in ActionClip’s JavaScript sandbox. Selected text does not leave your Mac.

## Action configuration

````javascript
function run(selected_text) {
  if (!selected_text) return "No characters selected.";
  return Array.from(selected_text).map((character) => {
    const value = character.codePointAt(0);
    const code = "U+" + value.toString(16).toUpperCase().padStart(4, "0");
    let label = character;
    if (character === " ") label = "SPACE";
    else if (character === "\n") label = "LINE FEED";
    else if (character === "\r") label = "CARRIAGE RETURN";
    else if (character === "\t") label = "TAB";
    return code + "  " + label;
  }).join("\n");
}
````

## Links

- [HTML listing](https://actionclip.app/actions/unicode-inspector)
- [Download action definition](https://actionclip.app/actions/unicode-inspector.actionclip)
- [Browse Developer Tools actions](https://actionclip.app/marketplace#marketplace-developerTools)
- [All Marketplace listings](https://actionclip.app/marketplace)
