Questions tagged [emoji]

Emojis are pictures or Unicode characters (such as smileys) that can be placed alongside text characters.

Emoji (絵文字えもじ?, Japanese pronunciation: [emodʑi]) are the ideograms or smileys used in Japanese electronic messages and Web pages, the use of which is spreading outside Japan. Originally meaning pictograph, the word emoji means "picture" (e) + "character" (moji). Although initially only available in Japan, some emoji character sets have been incorporated into Unicode, allowing them to be used elsewhere as well. As a result, emoji have become increasingly popular after their international inclusion in Apple's iOS in 2011 as the Apple Color Emoji typeface, which was followed by similar adoption by Android and other mobile operating systems.

- Keep it !

2555 questions
1
vote
1 answer

How to include emoji's in utf8mb4_general_ci coded DB? (MySQL issue)

I'm trying via various DB software (Navicat, MySQL Workbench and others) to include an emoji in the table row along with text. The table is utf8mb4_general_ci, so it should work, but it ends up showing as ???? or ?. What is the trick here to include…
James Logan
  • 833
  • 1
  • 8
  • 8
1
vote
4 answers

How to parse emojis and convert to images?

I'm sure there is already a ruby gem that supports this...I want to parse a string which could potentially contain an emoji and replace it with an HTML image. How can I do this?
Andrew
  • 227,796
  • 193
  • 515
  • 708
1
vote
0 answers

How to show emoji in uitextview or uiwebview ios

I am working on chatting project. when i send the emoji from iPhone. It not showing properly. I use the following code. CGRect labelFrame = CGRectMake (85, 10, 200, textSize.height+20); UITextView *label = [[UITextView alloc]…
1
vote
0 answers

Restricting emojis and some of the speacial characters while entering data in an edit textbox

I am trying to restrict some of the special characters and emojis while entering data in the edit text box. I want to set the edit text box to error as soon as a special character or an emoji is entered. I am able to do this only for special…
1
vote
0 answers

How to implement a button for emoji (like Hangouts)?

How is it possible to implement a button that opens the emoji keyboard like in Hangouts? I don't mean the standard emoji key inside the keyboard that appears when using android:inputType="textShortMessage". It should be a separate button inside the…
jeff
  • 6,299
  • 1
  • 15
  • 18
1
vote
0 answers

PHP Strip Special Characters (Emoji) from String

I need to strip the emoji from a string, we can store the info, but it breaks our xml export because of the special characters used in emoji. I'd like to use PHP to strip the emoji out before it ever makes it to the database . Here is a sample of…
KeithW
  • 31
  • 6
1
vote
0 answers

Emoji inconsistency in Google Chrome

In Google Chrome, if I create a prompt with an Emoji character, it looks fine there. But, if I put in an input field or in the page itself, all the characters look weird with a square and a cross. Do you know if this is something I can fix…
Nuno
  • 3,082
  • 5
  • 38
  • 58
1
vote
0 answers

Set the maximum character length of a UITextField with emoji

I use actually this code (set maximum 4 characters) : - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string { NSUInteger newLength = [self.messageText.text length] + [string…
1
vote
0 answers

mapping Unicode to emoji encoding table

I have response from server like this json "content": "\\u062a\\u0637\\u0628\\u064a\\u0642 \\u0645\\u0645\\u064a\\u0632 \\u0627\\u0644\\u0634\\u0643\\u0631 \\u0644\\u0645\\u0646 \\u0633\\u0627\\u0647\\u0645 \\u0641\\u064a\\u0647" it…
Sarah Sami
  • 577
  • 1
  • 6
  • 20
1
vote
1 answer

Replace emoji names to its code

I use emojiarea to make a textarea with Emoji support. When I type a message with Emoji and send it, it uses an emoji name like :smile: but I want to replace this name with its code as in twemoji. So the problem is to find a file or something, where…
Yelnar
  • 674
  • 1
  • 7
  • 17
1
vote
2 answers

how to replace emoji in android softkeyboard

To display the emoji button in the soft keyboard I use this in the EditText: android:inputType="textShortMessage" which uses the emoji icons for my device (which may be specific to my carrier/phone model). I want to use my own set of drawables…
droideckar
  • 1,077
  • 10
  • 20
1
vote
0 answers

Get Smiley and text into string from edittext

In chat application i use emoji i am set it in edittext but while fetching it return an obj EditText txt = (EditText)findViewById(R.id.edit_text); ImageGetter imageGetter = new ImageGetter() { public Drawable getDrawable(String source) { …
Manthan Patel
  • 993
  • 1
  • 9
  • 20
1
vote
1 answer

Strange behaviour of UILabel.attributedText combined with Emoji font

I found some strange behviour of UILabel with attributed text and Emoji icons. Have no idea how to fix it. Here is my code I'm doing every time text changes on textfield. NSLog(@"bef %@", self.textView.attributedText); self.textView.attributedText =…
Grzegorz Krukowski
  • 18,081
  • 5
  • 50
  • 71
1
vote
0 answers

Emoji symbols/emoticons in Python IDLE

I can't encode and display characters in the range \U0001f600-\U0001f650. They are called emoji or emoticons and they are used in all social media. Python error message: File "C:\Python\Python342x64\lib\encodings\cp1251.py", line 19, in encode …
Daniel Petrov
  • 95
  • 3
  • 12
1
vote
3 answers

Encoding trouble with Facebook/Twitter API Emojis

I'm very new to PHP and I'm having some encoding issues with emojis in the Facebook/Twitter API The data comes in and I see emojis represented like so: \u2026 after json_decode the emojis look like this: … and on my website they look like…
mga911
  • 1,536
  • 1
  • 16
  • 33
1 2 3
99
100