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 6649049
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:43:41+00:00 2026-05-26T00:43:41+00:00

I am losing the capability of printing unicode characters right after instancing a QApplication

  • 0

I am losing the capability of printing unicode characters right after instancing a QApplication object.

From the following code and having included all the needed libraries:

int main(int argc, char** argv)
{   
    qDebug() << "aeiou áéíóú";
    QApplication app(argc, argv);
    qDebug() << "aeiou áéíóú";
    return 0;
}

I am getting this output:

aeiou áéíóú
aeiou áéíóú

How do I fix this odd behaviour? I need to be able to print unicode strings (coming in UTF-8).

  • 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-05-26T00:43:42+00:00Added an answer on May 26, 2026 at 12:43 am

    2017 UPDATE: This answer from 2011 applies for Qt 4. In Qt 5, the text codecs were eliminated, and all source is expected to be UTF-8. See “Source code must be UTF-8 and QString wants it”

    When Qt interprets char * into a string, it uses a text codec. This is set globally, and you can choose what you want for your project:

    https://doc.qt.io/qt-4.8/qtextcodec.html#setCodecForCStrings

    Note that Qt’s default is Latin-1, and it may establish that default in the QApplication constructor call stack somewhere. If you’re globally using UTF-8 in your project, you might try:

    int main(int argc, char** argv)
    {   
        qDebug() << "aeiou áéíóú";
    
        QApplication app(argc, argv);
        QTextCodec *codec = QTextCodec::codecForName("UTF-8");
        QTextCodec::setCodecForCStrings(codec);
    
        qDebug() << "aeiou áéíóú";
        return 0;
    }
    

    And see if that solves your issue.

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

Sidebar

Related Questions

I'm having a little trouble with losing my array order after using unset() .
I am somewhat losing my mind here... I have the following code: <script id=myTemplate
After losing hours for finding why on my machine the same code was beahving
I'm having a problem with T4MVC losing the code it generated each time I
What are the most common ways of losing or having overwritten code when sharing
I think I'm losing it, can anyone explain why am I experiencing the following:
I'm having an issue with PHP losing data in a variable. There is quite
I am having a problem with VS 2010 apparently losing it's ability to load
this link shows How to prevent Custom Views from losing state across screen orientation
I have a poker blind timer Silverlight app that is losing time (after running

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.