Skip to content
BEAD

Unicode Codepoint Converter

See any character as U+XXXX, decimal, UTF-8 bytes, JS / Python / Rust escapes, and HTML entities.

cU+0063decimal 99 · 1 UTF-8 byte · 1 JS char unit
UTF-8 (hex)63
UTF-8 (URL)%63
UTF-160063
JS escape\u0063
Python escape\u0063
Rust escape\u{0063}
HTML &#dec;c
HTML &#xhex;c
aU+0061decimal 97 · 1 UTF-8 byte · 1 JS char unit
UTF-8 (hex)61
UTF-8 (URL)%61
UTF-160061
JS escape\u0061
Python escape\u0061
Rust escape\u{0061}
HTML &#dec;a
HTML &#xhex;a
fU+0066decimal 102 · 1 UTF-8 byte · 1 JS char unit
UTF-8 (hex)66
UTF-8 (URL)%66
UTF-160066
JS escape\u0066
Python escape\u0066
Rust escape\u{0066}
HTML &#dec;f
HTML &#xhex;f
éU+00E9decimal 233 · 2 UTF-8 bytes · 1 JS char unit
UTF-8 (hex)C3 A9
UTF-8 (URL)%C3%A9
UTF-1600E9
JS escape\u00E9
Python escape\u00E9
Rust escape\u{00E9}
HTML &#dec;é
HTML &#xhex;é
U+0020decimal 32 · 1 UTF-8 byte · 1 JS char unit
UTF-8 (hex)20
UTF-8 (URL)%20
UTF-160020
JS escape\u0020
Python escape\u0020
Rust escape\u{0020}
HTML &#dec; 
HTML &#xhex; 
🌮U+1F32Edecimal 127790 · 4 UTF-8 bytes · 2 JS char units
UTF-8 (hex)F0 9F 8C AE
UTF-8 (URL)%F0%9F%8C%AE
UTF-16D83C DF2E
JS escape\u{1F32E}
Python escape\U0001F32E
Rust escape\u{1F32E}
HTML &#dec;🌮
HTML &#xhex;🌮
</>Use this tool programmaticallycurl · JavaScript · MCP

Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.

curl
curl https://api.b-e-a-d.com/tools/unicode-codepoint/run \
  -H "Content-Type: application/json" \
  -d '{
  "input": "your input here",
  "mode": "chars"
}'
JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/unicode-codepoint/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "input": "your input here",
  "mode": "chars"
}),
});
const data = await res.json();
console.log(data.result);
MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
  "mcpServers": {
    "bead": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
    }
  }
}

# Then ask Claude to call:
mcp__bead__bead_unicode_codepoint

Full reference: developer docs · OpenAPI spec

Every form of one character

Paste a character (or several) and see the codepoint in U+XXXX notation, decimal, hex, UTF-8 byte sequence, UTF-16 surrogate pair, JavaScript / Python / Rust escape forms, HTML named entity, and HTML numeric entity.

You might also like