Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8684529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T22:19:55+00:00 2026-06-12T22:19:55+00:00

I am making an app that posts content from a UITextField, to a PHP

  • 0

I am making an app that posts content from a UITextField, to a PHP script, and store in a database to read later. I am having one heck of a time working with emojis.

Using json, I will get a response like this:

content = "\Uf44d";
id = 104;
time = 1350359055;

In this instance, I used an emoji. But when I do [dictionary objectForKey:@"content"], a box just appears. 

I’m thinking I need to convert to UTF-8. But I’m not completely sure. Please help!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T22:19:56+00:00Added an answer on June 12, 2026 at 10:19 pm

    U+F44D is a Unicode character in the “Private Use Area” U+E000..U+F8FF, so that is probably not the character you want to display.

    On the other hand, U+1F44D is the “THUMBS UP SIGN”, so it could be that your Web service does not create a correct JSON response for Unicode characters greater than 0xFFFF.

    According to the JSON RFC, characters that are not part of the “Basic Multilingual Plane” can be escaped using a UTF-16 surrogate pair. For the U+1F44D character the JSON Unicode escape sequence would be “\ud83d\udc4d”.

    The following code shows that it works in general:

    const char *s = "{ \"content\": \"\\ud83d\\udc4d\", \"id\": 104, \"time\": 1350359055 }";
    NSData *jsonData = [NSData dataWithBytes:s length:strlen(s)];
    NSError *error;
    NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:&error];
    self.label.text = [jsonDict objectForKey:@"content"];
    

    This displays the “THUMBS UP SIGN” correctly in the label.

    But you don’t have to escape characters, the Web service could also just send the UTF-8 sequence.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im making an app that should let the user see video from the camera
I'm making an app that is requesting data from a Web Service (implementing Soap).
I'm making an app that allows you to browse through pictures from a website.
I am making an android app that publishes facebook posts. I want it to
I am making an app that parses an RSS Feed into a SQLite database
I'm making a simple Facebook app that posts updates to the user's timeline using
Im making an app that shows images from a Tumblr account. It loads the
Im making an app that shows images from an tumblr account. It shows 20
I'm having an issue making an app that plays music in rails. I can't
i'm making app that the main page include TableView but i want when i

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.