Emoji

–Show Emojis
I found a Page with unicode

displayMode(FULLSCREEN)

function setup()
    dTab={}
    cnt=0
    pos=WIDTH
    x=600
    fontSize(200)    
end

function draw()
    background(31, 233, 231, 255)
    text("Touch the screen",200,600)
    sprite("Blocks:Grass Top",500,200,WIDTH+600,500)
    sprite("Blocks:Gravel Stone",500,HEIGHT/2-50,WIDTH+400,150)
    for z=#dTab,1,-1 do
        sprite("Cargo Bot:Smoke Particle",dTab[z].x-30,HEIGHT/2+100,dTab[z].y)
        dTab[z].y=dTab[z].y-.5
        if dTab[z].y==0 then
            table.remove(dTab,z)
        end
    end
    if pos>0 then
        pos=pos-1
        x=x-1
       -- text("
text("\\u{1F69C}",pos+30,HEIGHT/2)
        if pos%50==0 then
            table.insert(dTab,vec2(pos,120))
        end
        if pos == 0 then pos = WIDTH end
    end    
end

@matox I think you’re missing some code.

@matox - are you missing the ~~~ at the bottom of your code, also the top ~~~ needs to before your comment of —Show Emojis. Not sure if that is the problem but worth a try.

My Emojis Arendt accepted. Ihave no Problems with the Mine my project . How can I convert a specific Emoji to CHR so it is copied here.
Above I have User the Emoji with Unicode.

@matox Do a forum search for Emojis. There have been several projects posted for them. You might find something that will work for you.