A block (range + sample) or list all blocks
API · /unicode-api
Unicode API
Unicode 字符数据库 (UCD) 作为 API。将任意码点(0..10FFFF,包括中日韩统一表意文字和谚文范围)解析为其名称、通用类别、区块和文字——以及字面字符、HTML 实体(😀)、CSS 转义和 UTF-8/UTF-16 字节序列。传递十六进制码点(例如 1F600 → 😀 咧嘴笑脸)或字面字符(?char=€)。按名称搜索 40,000 多个命名字符(例如“heart”、“arrow”),按类别或区块筛选,并浏览所有 346 个 Unicode 区块。适用于文本处理工具、表情符号选择器、编辑器、国际化和开发者实用程序。
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 96 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,787
- attiva
- Chiamate totali
- 248
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 8,000 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 8,000 llamadas/mes
- 2 solicitudes/seg
- Caracteres + búsqueda + bloques
- Sin tarjeta de crédito
Starter
€4.50 /mese
- 80,000 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 80k calls/month
- 8 req/sec
- Category / block filters
- Email support
Pro
€13.00 /mese
- 400,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 400k llamadas/mes
- 20 req/seg
- Editores / herramientas de texto
- Soporte prioritario
Mega
€34.00 /mese
- 2,000,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 2M calls/month
- 50 req/sec
- i18n / platform scale
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Text Segmentation API
Count and split text the way people actually read it, using Unicode-correct segmentation. The count endpoint returns the number of grapheme clusters — the real, user-perceived characters, so a family emoji counts as 1 (not 7) and an accented letter as 1 — alongside words, sentences, code points, UTF-16 code units (the naive string length that over-counts) and UTF-8 byte length. This is exactly what character-limit fields, tweet/SMS counters and validation need so the count agrees with what the user sees. The segment endpoint splits text into grapheme, word or sentence segments (word segments are flagged word-like versus punctuation and spaces) and is locale-aware, so Japanese, Chinese and Thai word boundaries come out right. Everything is computed locally with no network calls. A Unicode text segmenter — distinct from the Unicode codepoint database (unicode), the case/text-utilities toolkit (text) and string similarity (similarity). No upstream key, no cache.
api.oanor.com/segmenter-api
Emoji API
Uma base de dados completa de emojis em uma API rápida. Pesquise aproximadamente 1.870 emojis por nome, palavra-chave, alias ou tag, consulte um único emoji pelo seu alias (como rocket ou :fire:) ou pelo próprio caractere do emoji, navegue por qualquer uma das nove categorias Unicode ou obtenha emojis aleatórios (opcionalmente de uma categoria). Cada emoji vem com seu nome, categoria, aliases, tags de pesquisa, pontos de código Unicode e a versão em que foi introduzido. Construído sobre o conjunto de dados aberto do GitHub gemoji e servido inteiramente em memória, para que as respostas sejam instantâneas e o serviço esteja sempre disponível. Ideal para aplicativos de chat e mensagens, seletores e pesquisa de emojis, ferramentas sociais e de conteúdo, jogos e widgets divertidos.
api.oanor.com/emoji-api
Genshin Impact API
Genshin Impact game data as an API — every playable character, weapon, artifact set and more from miHoYo's open-world RPG. Look up a character by name (e.g. Albedo → Geo vision, Sword user, 5-star, with title, nation, constellation, birthday, skill and passive talents, and constellations) or pull the full 90+ roster, browse weapons (e.g. Skyward Blade → 5-star Sword) and artifact sets (e.g. Archaic Petra with its 2- and 4-piece bonuses), and list reference categories — elements, nations, bosses, domains, materials, consumables and enemies. Backed by the open genshin.dev dataset. Ideal for team-building and tier-list tools, damage calculators, wikis, Discord bots and any Genshin companion app.
api.oanor.com/genshin-api
Rick and Morty API
The Rick and Morty universe as an API — every character, location and episode from the show. Look up a character by id or search and filter the roster by name, status (alive, dead, unknown), species, type and gender (e.g. all living Mortys), browse locations by name, type and dimension, or pull episodes by name or episode code (e.g. S03E07 → The Ricklantis Mixup). Each character carries status, species, origin and last-known location, episode appearances and a portrait; locations carry their type and dimension; episodes carry the air date and cast size. Backed by the open rickandmortyapi.com dataset. Ideal for fan sites, trivia and quiz games, Discord bots, learning projects and any Rick and Morty app.
api.oanor.com/rickandmorty-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Unicode API?
Qual è il limite di velocità di Unicode API?
Quanto costa Unicode API?
Posso cancellare l'abbonamento in qualsiasi momento?
Unicode API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/unicode-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/unicode-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/unicode-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/unicode-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.