prompt
stringlengths
218
241
response
stringlengths
13
216
word
stringlengths
1
24
metadata
dict
Count the number of occurrences of each character in the word 'unfanatical' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"u": 1, "n": 2, "f": 1, "a": 3, "t": 1, "i": 1, "c": 1, "l": 1}
unfanatical
{ "character_count": 11, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word '煎じ薬' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u714e": 1, "\u3058": 1, "\u85ac": 1}
煎じ薬
{ "character_count": 3, "difficulty": 7, "language": "japanese" }
Count the number of occurrences of each character in the word 'umbilication' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"u": 1, "m": 1, "b": 1, "i": 3, "l": 1, "c": 1, "a": 1, "t": 1, "o": 1, "n": 1}
umbilication
{ "character_count": 12, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'hedgy' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"h": 1, "e": 1, "d": 1, "g": 1, "y": 1}
hedgy
{ "character_count": 5, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'astrograph' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"a": 2, "s": 1, "t": 1, "r": 2, "o": 1, "g": 1, "p": 1, "h": 1}
astrograph
{ "character_count": 10, "difficulty": 4, "language": "english" }
Count the number of occurrences of each character in the word 'unfadingness' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"u": 1, "n": 3, "f": 1, "a": 1, "d": 1, "i": 1, "g": 1, "e": 1, "s": 2}
unfadingness
{ "character_count": 12, "difficulty": 6, "language": "chinese" }
Count the number of occurrences of each character in the word '脚链' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u811a": 1, "\u94fe": 1}
脚链
{ "character_count": 2, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'кармической' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u043a": 2, "\u0430": 1, "\u0440": 1, "\u043c": 1, "\u0438": 1, "\u0447": 1, "\u0435": 1, "\u0441": 1, "\u043e": 1, "\u0439": 1}
кармической
{ "character_count": 11, "difficulty": 7, "language": "russian" }
Count the number of occurrences of each character in the word 'मातृभूमि' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u092e": 2, "\u093e": 1, "\u0924": 1, "\u0943": 1, "\u092d": 1, "\u0942": 1, "\u093f": 1}
मातृभूमि
{ "character_count": 8, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'uncommunicativeness' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"u": 2, "n": 3, "c": 2, "o": 1, "m": 2, "i": 2, "a": 1, "t": 1, "v": 1, "e": 2, "s": 2}
uncommunicativeness
{ "character_count": 19, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'tamarao' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 1, "a": 3, "m": 1, "r": 1, "o": 1}
tamarao
{ "character_count": 7, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'спонсор' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0441": 2, "\u043f": 1, "\u043e": 2, "\u043d": 1, "\u0440": 1}
спонсор
{ "character_count": 7, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word 'मनीला' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u092e": 1, "\u0928": 1, "\u0940": 1, "\u0932": 1, "\u093e": 1}
मनीला
{ "character_count": 5, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'unminable' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"u": 1, "n": 2, "m": 1, "i": 1, "a": 1, "b": 1, "l": 1, "e": 1}
unminable
{ "character_count": 9, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word '保护地' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u4fdd": 1, "\u62a4": 1, "\u5730": 1}
保护地
{ "character_count": 3, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word '重要な' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u91cd": 1, "\u8981": 1, "\u306a": 1}
重要な
{ "character_count": 3, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word '憎恨' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u618e": 1, "\u6068": 1}
憎恨
{ "character_count": 2, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'triradiate' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 2, "r": 2, "i": 2, "a": 2, "d": 1, "e": 1}
triradiate
{ "character_count": 10, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word '好笑的' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u597d": 1, "\u7b11": 1, "\u7684": 1}
好笑的
{ "character_count": 3, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'mimester' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"m": 2, "i": 1, "e": 2, "s": 1, "t": 1, "r": 1}
mimester
{ "character_count": 8, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'evovae' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"e": 2, "v": 2, "o": 1, "a": 1}
evovae
{ "character_count": 6, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word '巨魔' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u5de8": 1, "\u9b54": 1}
巨魔
{ "character_count": 2, "difficulty": 4, "language": "chinese" }
Count the number of occurrences of each character in the word 'coleopterist' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"c": 1, "o": 2, "l": 1, "e": 2, "p": 1, "t": 2, "r": 1, "i": 1, "s": 1}
coleopterist
{ "character_count": 12, "difficulty": 8, "language": "chinese" }
Count the number of occurrences of each character in the word 'ненаучной' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u043d": 3, "\u0435": 1, "\u0430": 1, "\u0443": 1, "\u0447": 1, "\u043e": 1, "\u0439": 1}
ненаучной
{ "character_count": 9, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'कंप्यूटर' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0915": 1, "\u0902": 1, "\u092a": 1, "\u094d": 1, "\u092f": 1, "\u0942": 1, "\u091f": 1, "\u0930": 1}
कंप्यूटर
{ "character_count": 8, "difficulty": 4, "language": "hindi" }
Count the number of occurrences of each character in the word 'petrogeny' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"p": 1, "e": 2, "t": 1, "r": 1, "o": 1, "g": 1, "n": 1, "y": 1}
petrogeny
{ "character_count": 9, "difficulty": 4, "language": "english" }
Count the number of occurrences of each character in the word 'Klanism' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"K": 1, "l": 1, "a": 1, "n": 1, "i": 1, "s": 1, "m": 1}
Klanism
{ "character_count": 7, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word '違憲性' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u9055": 1, "\u61b2": 1, "\u6027": 1}
違憲性
{ "character_count": 3, "difficulty": 8, "language": "japanese" }
Count the number of occurrences of each character in the word 'котенок' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u043a": 2, "\u043e": 2, "\u0442": 1, "\u0435": 1, "\u043d": 1}
котенок
{ "character_count": 7, "difficulty": 2, "language": "russian" }
Count the number of occurrences of each character in the word '鉄の' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u9244": 1, "\u306e": 1}
鉄の
{ "character_count": 2, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'catallactically' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"c": 3, "a": 4, "t": 2, "l": 4, "i": 1, "y": 1}
catallactically
{ "character_count": 15, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'boody' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"b": 1, "o": 2, "d": 1, "y": 1}
boody
{ "character_count": 5, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'विज्ञापन' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0935": 1, "\u093f": 1, "\u091c": 1, "\u094d": 1, "\u091e": 1, "\u093e": 1, "\u092a": 1, "\u0928": 1}
विज्ञापन
{ "character_count": 8, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'copartaker' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"c": 1, "o": 1, "p": 1, "a": 2, "r": 2, "t": 1, "k": 1, "e": 1}
copartaker
{ "character_count": 10, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'interjaculate' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"i": 1, "n": 1, "t": 2, "e": 2, "r": 1, "j": 1, "a": 2, "c": 1, "u": 1, "l": 1}
interjaculate
{ "character_count": 13, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word '好的' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u597d": 1, "\u7684": 1}
好的
{ "character_count": 2, "difficulty": 2, "language": "chinese" }
Count the number of occurrences of each character in the word 'эллипсоид' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u044d": 1, "\u043b": 2, "\u0438": 2, "\u043f": 1, "\u0441": 1, "\u043e": 1, "\u0434": 1}
эллипсоид
{ "character_count": 9, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'sheathed' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"s": 1, "h": 2, "e": 2, "a": 1, "t": 1, "d": 1}
sheathed
{ "character_count": 8, "difficulty": 4, "language": "english" }
Count the number of occurrences of each character in the word 'किताब' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0915": 1, "\u093f": 1, "\u0924": 1, "\u093e": 1, "\u092c": 1}
किताब
{ "character_count": 5, "difficulty": 2, "language": "hindi" }
Count the number of occurrences of each character in the word 'स्थिर' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0938": 1, "\u094d": 1, "\u0925": 1, "\u093f": 1, "\u0930": 1}
स्थिर
{ "character_count": 5, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'inscrutableness' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"i": 1, "n": 2, "s": 3, "c": 1, "r": 1, "u": 1, "t": 1, "a": 1, "b": 1, "l": 1, "e": 2}
inscrutableness
{ "character_count": 15, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'смазчик' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0441": 1, "\u043c": 1, "\u0430": 1, "\u0437": 1, "\u0447": 1, "\u0438": 1, "\u043a": 1}
смазчик
{ "character_count": 7, "difficulty": 4, "language": "russian" }
Count the number of occurrences of each character in the word '実物以上に見える' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u5b9f": 1, "\u7269": 1, "\u4ee5": 1, "\u4e0a": 1, "\u306b": 1, "\u898b": 1, "\u3048": 1, "\u308b": 1}
実物以上に見える
{ "character_count": 8, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'micropantograph' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"m": 1, "i": 1, "c": 1, "r": 2, "o": 2, "p": 2, "a": 2, "n": 1, "t": 1, "g": 1, "h": 1}
micropantograph
{ "character_count": 15, "difficulty": 9, "language": "english" }
Count the number of occurrences of each character in the word 'delubrum' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"d": 1, "e": 1, "l": 1, "u": 2, "b": 1, "r": 1, "m": 1}
delubrum
{ "character_count": 8, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'hadrome' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"h": 1, "a": 1, "d": 1, "r": 1, "o": 1, "m": 1, "e": 1}
hadrome
{ "character_count": 7, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'подлокотник' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u043f": 1, "\u043e": 3, "\u0434": 1, "\u043b": 1, "\u043a": 2, "\u0442": 1, "\u043d": 1, "\u0438": 1}
подлокотник
{ "character_count": 11, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'reblossom' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"r": 1, "e": 1, "b": 1, "l": 1, "o": 2, "s": 2, "m": 1}
reblossom
{ "character_count": 9, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'мохообразных' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u043c": 1, "\u043e": 3, "\u0445": 2, "\u0431": 1, "\u0440": 1, "\u0430": 1, "\u0437": 1, "\u043d": 1, "\u044b": 1}
мохообразных
{ "character_count": 12, "difficulty": 6, "language": "russian" }
Count the number of occurrences of each character in the word 'epigrammatical' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"e": 1, "p": 1, "i": 2, "g": 1, "r": 1, "a": 3, "m": 2, "t": 1, "c": 1, "l": 1}
epigrammatical
{ "character_count": 14, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'листерии' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u043b": 1, "\u0438": 3, "\u0441": 1, "\u0442": 1, "\u0435": 1, "\u0440": 1}
листерии
{ "character_count": 8, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'telephonographic' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 1, "e": 2, "l": 1, "p": 2, "h": 2, "o": 2, "n": 1, "g": 1, "r": 1, "a": 1, "i": 1, "c": 1}
telephonographic
{ "character_count": 16, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'actinomere' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"a": 1, "c": 1, "t": 1, "i": 1, "n": 1, "o": 1, "m": 1, "e": 2, "r": 1}
actinomere
{ "character_count": 10, "difficulty": 8, "language": "chinese" }
Count the number of occurrences of each character in the word 'tawer' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 1, "a": 1, "w": 1, "e": 1, "r": 1}
tawer
{ "character_count": 5, "difficulty": 3, "language": "chinese" }
Count the number of occurrences of each character in the word 'prefurlough' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"p": 1, "r": 2, "e": 1, "f": 1, "u": 2, "l": 1, "o": 1, "g": 1, "h": 1}
prefurlough
{ "character_count": 11, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'exaggerator' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"e": 2, "x": 1, "a": 2, "g": 2, "r": 2, "t": 1, "o": 1}
exaggerator
{ "character_count": 11, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'beakhead' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"b": 1, "e": 2, "a": 2, "k": 1, "h": 1, "d": 1}
beakhead
{ "character_count": 8, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'градиент' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0433": 1, "\u0440": 1, "\u0430": 1, "\u0434": 1, "\u0438": 1, "\u0435": 1, "\u043d": 1, "\u0442": 1}
градиент
{ "character_count": 8, "difficulty": 4, "language": "russian" }
Count the number of occurrences of each character in the word 'Diascope' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"D": 1, "i": 1, "a": 1, "s": 1, "c": 1, "o": 1, "p": 1, "e": 1}
Diascope
{ "character_count": 8, "difficulty": 6, "language": "russian" }
Count the number of occurrences of each character in the word 'Hispanicism' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"H": 1, "i": 3, "s": 2, "p": 1, "a": 1, "n": 1, "c": 1, "m": 1}
Hispanicism
{ "character_count": 11, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'gendarmery' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"g": 1, "e": 2, "n": 1, "d": 1, "a": 1, "r": 2, "m": 1, "y": 1}
gendarmery
{ "character_count": 10, "difficulty": 8, "language": "japanese" }
Count the number of occurrences of each character in the word 'Amerindic' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"A": 1, "m": 1, "e": 1, "r": 1, "i": 2, "n": 1, "d": 1, "c": 1}
Amerindic
{ "character_count": 9, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'ужалила' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0443": 1, "\u0436": 1, "\u0430": 2, "\u043b": 2, "\u0438": 1}
ужалила
{ "character_count": 7, "difficulty": 3, "language": "russian" }
Count the number of occurrences of each character in the word 'spleenful' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"s": 1, "p": 1, "l": 2, "e": 2, "n": 1, "f": 1, "u": 1}
spleenful
{ "character_count": 9, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'evovae' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"e": 2, "v": 2, "o": 1, "a": 1}
evovae
{ "character_count": 6, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'Quakerlet' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"Q": 1, "u": 1, "a": 1, "k": 1, "e": 2, "r": 1, "l": 1, "t": 1}
Quakerlet
{ "character_count": 9, "difficulty": 4, "language": "english" }
Count the number of occurrences of each character in the word 'deash' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"d": 1, "e": 1, "a": 1, "s": 1, "h": 1}
deash
{ "character_count": 5, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'hadrome' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"h": 1, "a": 1, "d": 1, "r": 1, "o": 1, "m": 1, "e": 1}
hadrome
{ "character_count": 7, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'tubulifloral' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 1, "u": 2, "b": 1, "l": 3, "i": 1, "f": 1, "o": 1, "r": 1, "a": 1}
tubulifloral
{ "character_count": 12, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'acroesthesia' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"a": 2, "c": 1, "r": 1, "o": 1, "e": 2, "s": 2, "t": 1, "h": 1, "i": 1}
acroesthesia
{ "character_count": 12, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'bodingly' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"b": 1, "o": 1, "d": 1, "i": 1, "n": 1, "g": 1, "l": 1, "y": 1}
bodingly
{ "character_count": 8, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word '霸道' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u9738": 1, "\u9053": 1}
霸道
{ "character_count": 2, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'stiltbird' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"s": 1, "t": 2, "i": 2, "l": 1, "b": 1, "r": 1, "d": 1}
stiltbird
{ "character_count": 9, "difficulty": 5, "language": "hindi" }
Count the number of occurrences of each character in the word 'ピニトール' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30d4": 1, "\u30cb": 1, "\u30c8": 1, "\u30fc": 1, "\u30eb": 1}
ピニトール
{ "character_count": 5, "difficulty": 2, "language": "japanese" }
Count the number of occurrences of each character in the word 'Doliolidae' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"D": 1, "o": 2, "l": 2, "i": 2, "d": 1, "a": 1, "e": 1}
Doliolidae
{ "character_count": 10, "difficulty": 8, "language": "english" }
Count the number of occurrences of each character in the word 'ストライキ参加者' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30b9": 1, "\u30c8": 1, "\u30e9": 1, "\u30a4": 1, "\u30ad": 1, "\u53c2": 1, "\u52a0": 1, "\u8005": 1}
ストライキ参加者
{ "character_count": 8, "difficulty": 4, "language": "japanese" }
Count the number of occurrences of each character in the word 'раскольнический' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0440": 1, "\u0430": 1, "\u0441": 2, "\u043a": 2, "\u043e": 1, "\u043b": 1, "\u044c": 1, "\u043d": 1, "\u0438": 2, "\u0447": 1, "\u0435": 1, "\u0439": 1}
раскольнический
{ "character_count": 15, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'धीमी' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0927": 1, "\u0940": 2, "\u092e": 1}
धीमी
{ "character_count": 4, "difficulty": 2, "language": "hindi" }
Count the number of occurrences of each character in the word 'फव्वारा' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u092b": 1, "\u0935": 2, "\u094d": 1, "\u093e": 2, "\u0930": 1}
फव्वारा
{ "character_count": 7, "difficulty": 4, "language": "hindi" }
Count the number of occurrences of each character in the word 'papism' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"p": 2, "a": 1, "i": 1, "s": 1, "m": 1}
papism
{ "character_count": 6, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'चैज़्युबल' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u091a": 1, "\u0948": 1, "\u091c": 1, "\u093c": 1, "\u094d": 1, "\u092f": 1, "\u0941": 1, "\u092c": 1, "\u0932": 1}
चैज़्युबल
{ "character_count": 9, "difficulty": 8, "language": "hindi" }
Count the number of occurrences of each character in the word 'witheredness' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"w": 1, "i": 1, "t": 1, "h": 1, "e": 3, "r": 1, "d": 1, "n": 1, "s": 2}
witheredness
{ "character_count": 12, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'バラクータ' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u30d0": 1, "\u30e9": 1, "\u30af": 1, "\u30fc": 1, "\u30bf": 1}
バラクータ
{ "character_count": 5, "difficulty": 2, "language": "japanese" }
Count the number of occurrences of each character in the word 'здоровый' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0437": 1, "\u0434": 1, "\u043e": 2, "\u0440": 1, "\u0432": 1, "\u044b": 1, "\u0439": 1}
здоровый
{ "character_count": 8, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'copastor' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"c": 1, "o": 2, "p": 1, "a": 1, "s": 1, "t": 1, "r": 1}
copastor
{ "character_count": 8, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word '美しい' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u7f8e": 1, "\u3057": 1, "\u3044": 1}
美しい
{ "character_count": 3, "difficulty": 3, "language": "japanese" }
Count the number of occurrences of each character in the word 'fleabite' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"f": 1, "l": 1, "e": 2, "a": 1, "b": 1, "i": 1, "t": 1}
fleabite
{ "character_count": 8, "difficulty": 5, "language": "russian" }
Count the number of occurrences of each character in the word 'radication' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"r": 1, "a": 2, "d": 1, "i": 2, "c": 1, "t": 1, "o": 1, "n": 1}
radication
{ "character_count": 10, "difficulty": 5, "language": "japanese" }
Count the number of occurrences of each character in the word 'slummocky' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"s": 1, "l": 1, "u": 1, "m": 2, "o": 1, "c": 1, "k": 1, "y": 1}
slummocky
{ "character_count": 9, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'flybane' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"f": 1, "l": 1, "y": 1, "b": 1, "a": 1, "n": 1, "e": 1}
flybane
{ "character_count": 7, "difficulty": 4, "language": "english" }
Count the number of occurrences of each character in the word '肝病' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u809d": 1, "\u75c5": 1}
肝病
{ "character_count": 2, "difficulty": 4, "language": "chinese" }
Count the number of occurrences of each character in the word '祖国' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u7956": 1, "\u56fd": 1}
祖国
{ "character_count": 2, "difficulty": 4, "language": "chinese" }
Count the number of occurrences of each character in the word 'reorganizer' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"r": 3, "e": 2, "o": 1, "g": 1, "a": 1, "n": 1, "i": 1, "z": 1}
reorganizer
{ "character_count": 11, "difficulty": 6, "language": "russian" }
Count the number of occurrences of each character in the word 'divorcer' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"d": 1, "i": 1, "v": 1, "o": 1, "r": 2, "c": 1, "e": 1}
divorcer
{ "character_count": 8, "difficulty": 5, "language": "chinese" }
Count the number of occurrences of each character in the word 'truncate' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 2, "r": 1, "u": 1, "n": 1, "c": 1, "a": 1, "e": 1}
truncate
{ "character_count": 8, "difficulty": 4, "language": "english" }
Count the number of occurrences of each character in the word 'seditiousness' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"s": 4, "e": 2, "d": 1, "i": 2, "t": 1, "o": 1, "u": 1, "n": 1}
seditiousness
{ "character_count": 13, "difficulty": 8, "language": "russian" }
Count the number of occurrences of each character in the word 'tunicle' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"t": 1, "u": 1, "n": 1, "i": 1, "c": 1, "l": 1, "e": 1}
tunicle
{ "character_count": 7, "difficulty": 3, "language": "english" }
Count the number of occurrences of each character in the word 'аппарат' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0430": 3, "\u043f": 2, "\u0440": 1, "\u0442": 1}
аппарат
{ "character_count": 7, "difficulty": 4, "language": "russian" }
Count the number of occurrences of each character in the word 'ठंड' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"\u0920": 1, "\u0902": 1, "\u0921": 1}
ठंड
{ "character_count": 3, "difficulty": 3, "language": "hindi" }
Count the number of occurrences of each character in the word 'incretory' and return the result as a JSON object where the keys are characters and the values are their counts. Only include characters that appear at least once.
{"i": 1, "n": 1, "c": 1, "r": 2, "e": 1, "t": 1, "o": 1, "y": 1}
incretory
{ "character_count": 9, "difficulty": 5, "language": "japanese" }